Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <#PSScriptInfo
- .VERSION 1.6.0
- .GUID 5ad85ec5-fbf7-445f-a095-9a5d593edc8a
- .AUTHOR NovaViper
- .COMPANYNAME
- .COPYRIGHT
- .TAGS java minecraft bukkit server manager
- .LICENSEURI https://raw.githubusercontent.com/NovaViper/Console-Master/master/LICENSE
- .PROJECTURI https://github.com/NovaViper/Console-Master/tree/master
- .ICONURI
- .EXTERNALMODULEDEPENDENCIES
- .REQUIREDSCRIPTS
- .EXTERNALSCRIPTDEPENDENCIES
- .RELEASENOTES
- https://raw.githubusercontent.com/NovaViper/Console-Master/master/changelog.txt
- .PRIVATEDATA
- .DESCRIPTION Powershell Script for Managing Java Servers (i.e. Minecraft, Bukkit)
- #>
- Param()
- $Info = @{
- Path = "C:\Users\novag\Documents\MEGA\ProgrammingThings\Powershell\ConsoleMaster\ConsoleMaster.ps1"
- Version = '1.6.0' # http://semver.org ;)
- GUID = '5ad85ec5-fbf7-445f-a095-9a5d593edc8a'
- # GUID will randomly auto-generate for new scripts
- # Only specify GUID if you're going to overwrite existing properties on an updated script version
- Author = 'NovaViper'
- Description = 'Powershell Script for Managing Java Servers (i.e. Minecraft, Bukkit)'
- # CompanyName
- # Copyright
- Tags = @('java','minecraft','bukkit', 'server', 'manager')
- # RequiredModules = 'Pester','AzureRM' # or any module name published on the PS Gallery
- # ExternalModuleDependencies = 'qwerty' # any module name not published on the PS Gallery
- # RequiredScripts = 'asdf' # any script published on the PS Gallery
- # ExternalScriptDependencies = 'jkl' # you get the idea
- ProjectURI = 'https://github.com/NovaViper/Console-Master/tree/master'
- LicenseURI = 'https://raw.githubusercontent.com/NovaViper/Console-Master/master/LICENSE'
- # IconURI
- ReleaseNotes = 'https://raw.githubusercontent.com/NovaViper/Console-Master/master/changelog.txt'
- Force = $true
- }
- Update-ScriptFileInfo @Info
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement