├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── install.ps1 ├── modules ├── WindowsBox.AutoLogon │ ├── WindowsBox.AutoLogon.psd1 │ └── WindowsBox.AutoLogon.psm1 ├── WindowsBox.Compact │ ├── WindowsBox.Compact.psd1 │ └── WindowsBox.Compact.psm1 ├── WindowsBox.DevMode │ ├── WindowsBox.DevMode.psd1 │ └── WindowsBox.DevMode.psm1 ├── WindowsBox.Explorer │ ├── WindowsBox.Explorer.psd1 │ └── WindowsBox.Explorer.psm1 ├── WindowsBox.Hibernation │ ├── WindowsBox.Hibernation.psd1 │ └── WindowsBox.Hibernation.psm1 ├── WindowsBox.Network │ ├── WindowsBox.Network.psd1 │ └── WindowsBox.Network.psm1 ├── WindowsBox.RDP │ ├── WindowsBox.RDP.psd1 │ └── WindowsBox.RDP.psm1 ├── WindowsBox.UAC │ ├── WindowsBox.UAC.psd1 │ └── WindowsBox.UAC.psm1 ├── WindowsBox.VMGuestTools │ ├── WindowsBox.VMGuestTools.psd1 │ └── WindowsBox.VMGuestTools.psm1 ├── WindowsBox.VagrantAccount │ ├── WindowsBox.VagrantAccount.psd1 │ └── WindowsBox.VagrantAccount.psm1 ├── WindowsBox.WinRM │ ├── WindowsBox.WinRM.psd1 │ └── WindowsBox.WinRM.psm1 └── WindowsBox.WindowsUpdates │ ├── WindowsBox.WindowsUpdates.psd1 │ └── WindowsBox.WindowsUpdates.psm1 └── publish.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/appveyor.yml -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/install.ps1 -------------------------------------------------------------------------------- /modules/WindowsBox.AutoLogon/WindowsBox.AutoLogon.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.AutoLogon/WindowsBox.AutoLogon.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.AutoLogon/WindowsBox.AutoLogon.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.AutoLogon/WindowsBox.AutoLogon.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.Compact/WindowsBox.Compact.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Compact/WindowsBox.Compact.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.Compact/WindowsBox.Compact.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Compact/WindowsBox.Compact.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.DevMode/WindowsBox.DevMode.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.DevMode/WindowsBox.DevMode.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.DevMode/WindowsBox.DevMode.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.DevMode/WindowsBox.DevMode.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.Explorer/WindowsBox.Explorer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Explorer/WindowsBox.Explorer.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.Explorer/WindowsBox.Explorer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Explorer/WindowsBox.Explorer.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.Hibernation/WindowsBox.Hibernation.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Hibernation/WindowsBox.Hibernation.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.Hibernation/WindowsBox.Hibernation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Hibernation/WindowsBox.Hibernation.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.Network/WindowsBox.Network.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Network/WindowsBox.Network.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.Network/WindowsBox.Network.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.Network/WindowsBox.Network.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.RDP/WindowsBox.RDP.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.RDP/WindowsBox.RDP.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.RDP/WindowsBox.RDP.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.RDP/WindowsBox.RDP.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.UAC/WindowsBox.UAC.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.UAC/WindowsBox.UAC.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.UAC/WindowsBox.UAC.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.UAC/WindowsBox.UAC.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.VMGuestTools/WindowsBox.VMGuestTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.VMGuestTools/WindowsBox.VMGuestTools.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.VMGuestTools/WindowsBox.VMGuestTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.VMGuestTools/WindowsBox.VMGuestTools.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.VagrantAccount/WindowsBox.VagrantAccount.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.VagrantAccount/WindowsBox.VagrantAccount.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.VagrantAccount/WindowsBox.VagrantAccount.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.VagrantAccount/WindowsBox.VagrantAccount.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.WinRM/WindowsBox.WinRM.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.WinRM/WindowsBox.WinRM.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.WinRM/WindowsBox.WinRM.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.WinRM/WindowsBox.WinRM.psm1 -------------------------------------------------------------------------------- /modules/WindowsBox.WindowsUpdates/WindowsBox.WindowsUpdates.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.WindowsUpdates/WindowsBox.WindowsUpdates.psd1 -------------------------------------------------------------------------------- /modules/WindowsBox.WindowsUpdates/WindowsBox.WindowsUpdates.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/modules/WindowsBox.WindowsUpdates/WindowsBox.WindowsUpdates.psm1 -------------------------------------------------------------------------------- /publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windowsbox/powershellmodules/HEAD/publish.ps1 --------------------------------------------------------------------------------