├── .gitattributes ├── .gitignore ├── README.md └── Tools ├── Action - Update Defender Signatures └── Action-UpdateDefender.ps1 ├── Action-CleanupBeforeSysprep └── Action-CleanupBeforeSysprep.wsf ├── Add-ComputerToMDTDatabase └── Add-ComputerToMDTDataBase.ps1 ├── Apply - LGPO for Windows Server 2019 ├── ApplyLGPO.ps1 └── Invoke-Install.ps1 ├── CSDemo ├── AliasUserExit.vbs ├── Readme.txt ├── Samples │ ├── Disable OSInstall.ini │ ├── Setting based on Computer type and location.ini │ ├── Settings based on Computer type.ini │ ├── Settings based on Default Gateway.ini │ ├── Settings based on MAC for servers.ini │ ├── Settings based on MAC.ini │ ├── Settings based on Model.ini │ ├── Settings based on TaskSequenceID.ini │ ├── Settings based on UserExit-Alias.ini │ ├── Settings based on VB Calculation.ini │ ├── Settings based on Virtual Machines.ini │ ├── Settings for UDI.ini │ └── Using the SMSTSOrg.ini ├── Scripts │ └── AliasUserExit.vbs └── test.cmd ├── Check-VIAApprovedModel ├── Check-VIAApprovedModel.ps1 └── VIAApprovedModel.xml ├── Configure - Windows Client ├── AppxProvisionedPackage.txt ├── Configure-WindowsClient.ps1 └── Startmenu.xml ├── Configure - Windows Server └── Configure-WindowsServer.ps1 ├── Configure-DisableServicesforWindowsServer └── Configure-DisableServicesforWindowsServer.ps1 ├── Configure-HPBIOS └── Configure-HPBIOS.ps1 ├── Configure-HPILO └── Configure-HPILO.ps1 ├── Configure-ResetHPILO └── Reset-HPILO.ps1 ├── Connect-VIARDP └── ConnectVIARDP.psm1 ├── Convert-WIM2VHD └── Convert-WIM2VHD.ps1 ├── Convert-WindowsEdition └── Convert-WindowsEdition.ps1 ├── Create-ADUserDemo ├── ImportUsers.ps1 └── settings.xml ├── Create-MDTEvents └── CreateEvent.ps1 ├── Create-VIAComputerName └── Create-VIAComputerName.ps1 ├── Custom-ZTITatoo ├── CustomSettings.ini ├── ReadMe.txt ├── ViaMonstraTatoo.mof └── ViaMonstraTatoo.wsf ├── Disable-InternetAccess └── Disable-InternetAccess.ps1 ├── Disable-ServerApps └── Disable-ServerApps.ps1 ├── Enable-NestedHyperV ├── EnableNestedHyperV.ps1 ├── EnableNestedHyperVSimple.ps1 └── GetNestedHyperVRedniness.PS1 ├── Export-ModernDriverPackage └── Export-ModernDriverPackage.ps1 ├── GenOSDStatus └── GenOSDStatus.ps1 ├── GenOSDStatusV2 └── GenOSDStatusV2.ps1 ├── Get-ADHealthCheck └── Get-ADHealthCheck.ps1 ├── Get-AllC++Runtimes ├── Get-Downloads.ps1 ├── RunMe.ps1 └── download.xml ├── Get-DHCPHealthCheck └── Get-DHCPHealthCheck.ps1 ├── Get-MDTOdata └── GetMDTOdata.ps1 ├── Get-ReliabilityStabilityMetrics └── Get-ReliabilityStabilityMetrics.ps1 ├── Get-TSxEdgeEnterpriseMSIAndInstall └── Get-TSxEdgeEnterpriseMSIAndInstall.ps1 ├── Get-TSxMSEdgeNow └── Get-TSxMSEdgeNow.ps1 ├── Get-VIAActiveDiffDisk └── GetVIAActiveDiffDisk.ps1 ├── Get-VIADisconnectedVHDs └── GetVIADisconnectedVHDs.psm1 ├── Get-VIASCVMMDiskInfo └── GetVIASCVMMDiskInfo.psm1 ├── Get-VIAUnimportedvmcxFiles └── GetVIAUnimportedvmcxFiles.psm1 ├── Get-VMHealthCheck └── Get-VMHealthCheck.ps1 ├── Get-WIMInfo └── Get-WimInfo.ps1 ├── Get-WSUSHealthCheck └── Get-WSUSHealthCheck.ps1 ├── GetILOInfo └── GetILOInfo.psm1 ├── IMF-ConfigMgrImport └── IMF-ConfigMgrImport.ps1 ├── IdentityLifeCyleWoops ├── GetAdminCount.ps1 ├── GetAllUsersEnabledAndPasswordNeverExpires.ps1 └── GetAllUsersintheDomainAdminGroup.ps1 ├── Import-MDTApps └── Import-MDTApps.ps1 ├── Install - Acrobat Reader DC en └── Install-AcrobatReaderDC.ps1 ├── Install - C++ Runtime v14 framework package for Desktop Bridge └── Install-C++Runtimev14.ps1 ├── Install - Dell command update en └── Install-Dell_command_update.ps1 ├── Install - Microsoft BGInfo - x86-x64 ├── Install-MicrosoftBGInfox86x64.wsf └── Source │ └── Custom.bgi ├── Install - Microsoft Visual C++ └── Install-MicrosoftVisualC++x86x64.wsf ├── Install - Mozilla Firefox └── Install-MozillaFirefox.ps1 ├── Install - Notepad++ └── Install-NPP.ps1 ├── Install - NuGet Provider └── Install-NuGet.ps1 ├── Install - Office 365 ProPlus Project ├── Install-Office365Project.ps1 └── Source │ ├── Configuration.old.xml │ ├── Configuration.xml │ ├── Download.xml │ ├── configuration-Office365-x64.xml │ └── installOfficeProPlus64.xml ├── Install - Office 365 ProPlus Visio ├── Install-Office365Visio.ps1 └── Source │ ├── Configuration.xml │ ├── Download.xml │ ├── configuration-Office365-x64.xml │ └── installOfficeProPlus64.xml ├── Install - Office 365 ProPlus ├── Install-Office365.ps1 └── Source │ ├── Configuration.old.xml │ ├── Configuration.xml │ ├── Download.xml │ ├── configuration-Office365-x64.xml │ └── installOfficeProPlus64.xml ├── Install - PDF Creator └── Install-PDFCreator.ps1 ├── Install - Putty └── Install-Putty.ps1 ├── Install - RSAT └── Install-RSAT.ps1 ├── Install - VLCPlayer └── Install-VLCPlayer.ps1 ├── Install - VSCode └── Install-VSCode.ps1 ├── Install - Windows Terminal └── Install-WindowsTerminal.ps1 ├── Install-BIOSUpgrade └── Install-BIOSUpgrade.ps1 ├── Install-HPBIOSCmdlets └── Install-HPBIOSCmdlets-x64.ps1 ├── Install-HPSUM └── Install-HPSUM.ps1 ├── Install-RSATToolsfor1809 └── Install-RSATToolsfor1809.ps1 ├── Install-Wrapper └── Invoke-Install.ps1 ├── Install-X86-X64-C++ └── Install-MicrosoftVisualC++x86x64.wsf ├── Invoke-WSUSMaint ├── Invoke-WSUSMaint.ps1 ├── RemoveObsoleteUpdates.sql └── WsusDBMaintenance.sql ├── MDTComputerInventoryStoredProcedure ├── HardwareInfo.vbs ├── IventoryComputer.sql └── dbupdate.ini ├── MassUpgradeWindows10 ├── Invoke-ComputerCleanup.ps1 ├── Invoke-ComputerCompatScan.ps1 ├── Invoke-ComputerPrep.ps1 ├── Invoke-ComputerUpgrade.ps1 ├── Invoke-ImageDownload.ps1 └── computers.txt ├── MonitorMDT └── MonitorMDT.ps1 ├── NANORefImageModule ├── NANORefImageModule.psm1 └── NewNANORefImage.ps1 ├── New-HyperVM └── New-HyperVM.ps1 ├── OptimizeVHDs ├── OptimizeVHDs.ps1 └── OptimizeVIAVHD.ps1 ├── RemoveVMwUI └── RemoveVMwUI.ps1 ├── RemoveVMwUI2 └── RemoveVMwUI2.ps1 ├── RestPSFiles ├── Install Choclaty and NSSM.ps1 ├── Install NuGet and PowerShellGet.ps1 ├── Install and Configure RestPS.ps1 ├── Make RestPS a Services.ps1 ├── Start RestPS.ps1 ├── StartRestPS.ps1 └── Test RestPS.ps1 ├── Running-ParJobs └── Running-ParJobs.ps1 ├── Save-AllRunningVMs └── Save-AllRunningVMs.ps1 ├── Set-TSxTimesync └── Set-TSxTimesync.ps1 ├── Start-VIADeDupJob └── Start-VIADeDupJob.ps1 ├── TSxWrite-MDTMonitor └── TSxWrite-MDTMonitor.ps1 └── Test-ModernDriverPackage └── Test-ModernDriverPackage.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/README.md -------------------------------------------------------------------------------- /Tools/Action - Update Defender Signatures/Action-UpdateDefender.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Action - Update Defender Signatures/Action-UpdateDefender.ps1 -------------------------------------------------------------------------------- /Tools/Action-CleanupBeforeSysprep/Action-CleanupBeforeSysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Action-CleanupBeforeSysprep/Action-CleanupBeforeSysprep.wsf -------------------------------------------------------------------------------- /Tools/Add-ComputerToMDTDatabase/Add-ComputerToMDTDataBase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Add-ComputerToMDTDatabase/Add-ComputerToMDTDataBase.ps1 -------------------------------------------------------------------------------- /Tools/Apply - LGPO for Windows Server 2019/ApplyLGPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Apply - LGPO for Windows Server 2019/ApplyLGPO.ps1 -------------------------------------------------------------------------------- /Tools/Apply - LGPO for Windows Server 2019/Invoke-Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Apply - LGPO for Windows Server 2019/Invoke-Install.ps1 -------------------------------------------------------------------------------- /Tools/CSDemo/AliasUserExit.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/AliasUserExit.vbs -------------------------------------------------------------------------------- /Tools/CSDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Readme.txt -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Disable OSInstall.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Disable OSInstall.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Setting based on Computer type and location.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Setting based on Computer type and location.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on Computer type.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on Computer type.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on Default Gateway.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on Default Gateway.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on MAC for servers.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on MAC for servers.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on MAC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on MAC.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on Model.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on Model.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on TaskSequenceID.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on TaskSequenceID.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on UserExit-Alias.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on UserExit-Alias.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on VB Calculation.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on VB Calculation.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings based on Virtual Machines.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings based on Virtual Machines.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Settings for UDI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Settings for UDI.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Samples/Using the SMSTSOrg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Samples/Using the SMSTSOrg.ini -------------------------------------------------------------------------------- /Tools/CSDemo/Scripts/AliasUserExit.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/Scripts/AliasUserExit.vbs -------------------------------------------------------------------------------- /Tools/CSDemo/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/CSDemo/test.cmd -------------------------------------------------------------------------------- /Tools/Check-VIAApprovedModel/Check-VIAApprovedModel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Check-VIAApprovedModel/Check-VIAApprovedModel.ps1 -------------------------------------------------------------------------------- /Tools/Check-VIAApprovedModel/VIAApprovedModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Check-VIAApprovedModel/VIAApprovedModel.xml -------------------------------------------------------------------------------- /Tools/Configure - Windows Client/AppxProvisionedPackage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure - Windows Client/AppxProvisionedPackage.txt -------------------------------------------------------------------------------- /Tools/Configure - Windows Client/Configure-WindowsClient.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure - Windows Client/Configure-WindowsClient.ps1 -------------------------------------------------------------------------------- /Tools/Configure - Windows Client/Startmenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure - Windows Client/Startmenu.xml -------------------------------------------------------------------------------- /Tools/Configure - Windows Server/Configure-WindowsServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure - Windows Server/Configure-WindowsServer.ps1 -------------------------------------------------------------------------------- /Tools/Configure-DisableServicesforWindowsServer/Configure-DisableServicesforWindowsServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure-DisableServicesforWindowsServer/Configure-DisableServicesforWindowsServer.ps1 -------------------------------------------------------------------------------- /Tools/Configure-HPBIOS/Configure-HPBIOS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure-HPBIOS/Configure-HPBIOS.ps1 -------------------------------------------------------------------------------- /Tools/Configure-HPILO/Configure-HPILO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure-HPILO/Configure-HPILO.ps1 -------------------------------------------------------------------------------- /Tools/Configure-ResetHPILO/Reset-HPILO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Configure-ResetHPILO/Reset-HPILO.ps1 -------------------------------------------------------------------------------- /Tools/Connect-VIARDP/ConnectVIARDP.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Connect-VIARDP/ConnectVIARDP.psm1 -------------------------------------------------------------------------------- /Tools/Convert-WIM2VHD/Convert-WIM2VHD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Convert-WIM2VHD/Convert-WIM2VHD.ps1 -------------------------------------------------------------------------------- /Tools/Convert-WindowsEdition/Convert-WindowsEdition.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Convert-WindowsEdition/Convert-WindowsEdition.ps1 -------------------------------------------------------------------------------- /Tools/Create-ADUserDemo/ImportUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Create-ADUserDemo/ImportUsers.ps1 -------------------------------------------------------------------------------- /Tools/Create-ADUserDemo/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Create-ADUserDemo/settings.xml -------------------------------------------------------------------------------- /Tools/Create-MDTEvents/CreateEvent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Create-MDTEvents/CreateEvent.ps1 -------------------------------------------------------------------------------- /Tools/Create-VIAComputerName/Create-VIAComputerName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Create-VIAComputerName/Create-VIAComputerName.ps1 -------------------------------------------------------------------------------- /Tools/Custom-ZTITatoo/CustomSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Custom-ZTITatoo/CustomSettings.ini -------------------------------------------------------------------------------- /Tools/Custom-ZTITatoo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Custom-ZTITatoo/ReadMe.txt -------------------------------------------------------------------------------- /Tools/Custom-ZTITatoo/ViaMonstraTatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Custom-ZTITatoo/ViaMonstraTatoo.mof -------------------------------------------------------------------------------- /Tools/Custom-ZTITatoo/ViaMonstraTatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Custom-ZTITatoo/ViaMonstraTatoo.wsf -------------------------------------------------------------------------------- /Tools/Disable-InternetAccess/Disable-InternetAccess.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Disable-InternetAccess/Disable-InternetAccess.ps1 -------------------------------------------------------------------------------- /Tools/Disable-ServerApps/Disable-ServerApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Disable-ServerApps/Disable-ServerApps.ps1 -------------------------------------------------------------------------------- /Tools/Enable-NestedHyperV/EnableNestedHyperV.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Enable-NestedHyperV/EnableNestedHyperV.ps1 -------------------------------------------------------------------------------- /Tools/Enable-NestedHyperV/EnableNestedHyperVSimple.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Enable-NestedHyperV/EnableNestedHyperVSimple.ps1 -------------------------------------------------------------------------------- /Tools/Enable-NestedHyperV/GetNestedHyperVRedniness.PS1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Enable-NestedHyperV/GetNestedHyperVRedniness.PS1 -------------------------------------------------------------------------------- /Tools/Export-ModernDriverPackage/Export-ModernDriverPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Export-ModernDriverPackage/Export-ModernDriverPackage.ps1 -------------------------------------------------------------------------------- /Tools/GenOSDStatus/GenOSDStatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/GenOSDStatus/GenOSDStatus.ps1 -------------------------------------------------------------------------------- /Tools/GenOSDStatusV2/GenOSDStatusV2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/GenOSDStatusV2/GenOSDStatusV2.ps1 -------------------------------------------------------------------------------- /Tools/Get-ADHealthCheck/Get-ADHealthCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-ADHealthCheck/Get-ADHealthCheck.ps1 -------------------------------------------------------------------------------- /Tools/Get-AllC++Runtimes/Get-Downloads.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-AllC++Runtimes/Get-Downloads.ps1 -------------------------------------------------------------------------------- /Tools/Get-AllC++Runtimes/RunMe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-AllC++Runtimes/RunMe.ps1 -------------------------------------------------------------------------------- /Tools/Get-AllC++Runtimes/download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-AllC++Runtimes/download.xml -------------------------------------------------------------------------------- /Tools/Get-DHCPHealthCheck/Get-DHCPHealthCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-DHCPHealthCheck/Get-DHCPHealthCheck.ps1 -------------------------------------------------------------------------------- /Tools/Get-MDTOdata/GetMDTOdata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-MDTOdata/GetMDTOdata.ps1 -------------------------------------------------------------------------------- /Tools/Get-ReliabilityStabilityMetrics/Get-ReliabilityStabilityMetrics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-ReliabilityStabilityMetrics/Get-ReliabilityStabilityMetrics.ps1 -------------------------------------------------------------------------------- /Tools/Get-TSxEdgeEnterpriseMSIAndInstall/Get-TSxEdgeEnterpriseMSIAndInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-TSxEdgeEnterpriseMSIAndInstall/Get-TSxEdgeEnterpriseMSIAndInstall.ps1 -------------------------------------------------------------------------------- /Tools/Get-TSxMSEdgeNow/Get-TSxMSEdgeNow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-TSxMSEdgeNow/Get-TSxMSEdgeNow.ps1 -------------------------------------------------------------------------------- /Tools/Get-VIAActiveDiffDisk/GetVIAActiveDiffDisk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-VIAActiveDiffDisk/GetVIAActiveDiffDisk.ps1 -------------------------------------------------------------------------------- /Tools/Get-VIADisconnectedVHDs/GetVIADisconnectedVHDs.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-VIADisconnectedVHDs/GetVIADisconnectedVHDs.psm1 -------------------------------------------------------------------------------- /Tools/Get-VIASCVMMDiskInfo/GetVIASCVMMDiskInfo.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-VIASCVMMDiskInfo/GetVIASCVMMDiskInfo.psm1 -------------------------------------------------------------------------------- /Tools/Get-VIAUnimportedvmcxFiles/GetVIAUnimportedvmcxFiles.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-VIAUnimportedvmcxFiles/GetVIAUnimportedvmcxFiles.psm1 -------------------------------------------------------------------------------- /Tools/Get-VMHealthCheck/Get-VMHealthCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-VMHealthCheck/Get-VMHealthCheck.ps1 -------------------------------------------------------------------------------- /Tools/Get-WIMInfo/Get-WimInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-WIMInfo/Get-WimInfo.ps1 -------------------------------------------------------------------------------- /Tools/Get-WSUSHealthCheck/Get-WSUSHealthCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Get-WSUSHealthCheck/Get-WSUSHealthCheck.ps1 -------------------------------------------------------------------------------- /Tools/GetILOInfo/GetILOInfo.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/GetILOInfo/GetILOInfo.psm1 -------------------------------------------------------------------------------- /Tools/IMF-ConfigMgrImport/IMF-ConfigMgrImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/IMF-ConfigMgrImport/IMF-ConfigMgrImport.ps1 -------------------------------------------------------------------------------- /Tools/IdentityLifeCyleWoops/GetAdminCount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/IdentityLifeCyleWoops/GetAdminCount.ps1 -------------------------------------------------------------------------------- /Tools/IdentityLifeCyleWoops/GetAllUsersEnabledAndPasswordNeverExpires.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/IdentityLifeCyleWoops/GetAllUsersEnabledAndPasswordNeverExpires.ps1 -------------------------------------------------------------------------------- /Tools/IdentityLifeCyleWoops/GetAllUsersintheDomainAdminGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/IdentityLifeCyleWoops/GetAllUsersintheDomainAdminGroup.ps1 -------------------------------------------------------------------------------- /Tools/Import-MDTApps/Import-MDTApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Import-MDTApps/Import-MDTApps.ps1 -------------------------------------------------------------------------------- /Tools/Install - Acrobat Reader DC en/Install-AcrobatReaderDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Acrobat Reader DC en/Install-AcrobatReaderDC.ps1 -------------------------------------------------------------------------------- /Tools/Install - C++ Runtime v14 framework package for Desktop Bridge/Install-C++Runtimev14.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - C++ Runtime v14 framework package for Desktop Bridge/Install-C++Runtimev14.ps1 -------------------------------------------------------------------------------- /Tools/Install - Dell command update en/Install-Dell_command_update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Dell command update en/Install-Dell_command_update.ps1 -------------------------------------------------------------------------------- /Tools/Install - Microsoft BGInfo - x86-x64/Install-MicrosoftBGInfox86x64.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Microsoft BGInfo - x86-x64/Install-MicrosoftBGInfox86x64.wsf -------------------------------------------------------------------------------- /Tools/Install - Microsoft BGInfo - x86-x64/Source/Custom.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Microsoft BGInfo - x86-x64/Source/Custom.bgi -------------------------------------------------------------------------------- /Tools/Install - Microsoft Visual C++/Install-MicrosoftVisualC++x86x64.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Microsoft Visual C++/Install-MicrosoftVisualC++x86x64.wsf -------------------------------------------------------------------------------- /Tools/Install - Mozilla Firefox/Install-MozillaFirefox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Mozilla Firefox/Install-MozillaFirefox.ps1 -------------------------------------------------------------------------------- /Tools/Install - Notepad++/Install-NPP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Notepad++/Install-NPP.ps1 -------------------------------------------------------------------------------- /Tools/Install - NuGet Provider/Install-NuGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - NuGet Provider/Install-NuGet.ps1 -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Project/Install-Office365Project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Project/Install-Office365Project.ps1 -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Project/Source/Configuration.old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Project/Source/Configuration.old.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Project/Source/Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Project/Source/Configuration.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Project/Source/Download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Project/Source/Download.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Project/Source/configuration-Office365-x64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Project/Source/configuration-Office365-x64.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Project/Source/installOfficeProPlus64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Project/Source/installOfficeProPlus64.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Visio/Install-Office365Visio.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Visio/Install-Office365Visio.ps1 -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Visio/Source/Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Visio/Source/Configuration.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Visio/Source/Download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Visio/Source/Download.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Visio/Source/configuration-Office365-x64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Visio/Source/configuration-Office365-x64.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus Visio/Source/installOfficeProPlus64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus Visio/Source/installOfficeProPlus64.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus/Install-Office365.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus/Install-Office365.ps1 -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus/Source/Configuration.old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus/Source/Configuration.old.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus/Source/Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus/Source/Configuration.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus/Source/Download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus/Source/Download.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus/Source/configuration-Office365-x64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus/Source/configuration-Office365-x64.xml -------------------------------------------------------------------------------- /Tools/Install - Office 365 ProPlus/Source/installOfficeProPlus64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Office 365 ProPlus/Source/installOfficeProPlus64.xml -------------------------------------------------------------------------------- /Tools/Install - PDF Creator/Install-PDFCreator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - PDF Creator/Install-PDFCreator.ps1 -------------------------------------------------------------------------------- /Tools/Install - Putty/Install-Putty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Putty/Install-Putty.ps1 -------------------------------------------------------------------------------- /Tools/Install - RSAT/Install-RSAT.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - RSAT/Install-RSAT.ps1 -------------------------------------------------------------------------------- /Tools/Install - VLCPlayer/Install-VLCPlayer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - VLCPlayer/Install-VLCPlayer.ps1 -------------------------------------------------------------------------------- /Tools/Install - VSCode/Install-VSCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - VSCode/Install-VSCode.ps1 -------------------------------------------------------------------------------- /Tools/Install - Windows Terminal/Install-WindowsTerminal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install - Windows Terminal/Install-WindowsTerminal.ps1 -------------------------------------------------------------------------------- /Tools/Install-BIOSUpgrade/Install-BIOSUpgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install-BIOSUpgrade/Install-BIOSUpgrade.ps1 -------------------------------------------------------------------------------- /Tools/Install-HPBIOSCmdlets/Install-HPBIOSCmdlets-x64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install-HPBIOSCmdlets/Install-HPBIOSCmdlets-x64.ps1 -------------------------------------------------------------------------------- /Tools/Install-HPSUM/Install-HPSUM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install-HPSUM/Install-HPSUM.ps1 -------------------------------------------------------------------------------- /Tools/Install-RSATToolsfor1809/Install-RSATToolsfor1809.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install-RSATToolsfor1809/Install-RSATToolsfor1809.ps1 -------------------------------------------------------------------------------- /Tools/Install-Wrapper/Invoke-Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install-Wrapper/Invoke-Install.ps1 -------------------------------------------------------------------------------- /Tools/Install-X86-X64-C++/Install-MicrosoftVisualC++x86x64.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Install-X86-X64-C++/Install-MicrosoftVisualC++x86x64.wsf -------------------------------------------------------------------------------- /Tools/Invoke-WSUSMaint/Invoke-WSUSMaint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Invoke-WSUSMaint/Invoke-WSUSMaint.ps1 -------------------------------------------------------------------------------- /Tools/Invoke-WSUSMaint/RemoveObsoleteUpdates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Invoke-WSUSMaint/RemoveObsoleteUpdates.sql -------------------------------------------------------------------------------- /Tools/Invoke-WSUSMaint/WsusDBMaintenance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Invoke-WSUSMaint/WsusDBMaintenance.sql -------------------------------------------------------------------------------- /Tools/MDTComputerInventoryStoredProcedure/HardwareInfo.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MDTComputerInventoryStoredProcedure/HardwareInfo.vbs -------------------------------------------------------------------------------- /Tools/MDTComputerInventoryStoredProcedure/IventoryComputer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MDTComputerInventoryStoredProcedure/IventoryComputer.sql -------------------------------------------------------------------------------- /Tools/MDTComputerInventoryStoredProcedure/dbupdate.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MDTComputerInventoryStoredProcedure/dbupdate.ini -------------------------------------------------------------------------------- /Tools/MassUpgradeWindows10/Invoke-ComputerCleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MassUpgradeWindows10/Invoke-ComputerCleanup.ps1 -------------------------------------------------------------------------------- /Tools/MassUpgradeWindows10/Invoke-ComputerCompatScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MassUpgradeWindows10/Invoke-ComputerCompatScan.ps1 -------------------------------------------------------------------------------- /Tools/MassUpgradeWindows10/Invoke-ComputerPrep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MassUpgradeWindows10/Invoke-ComputerPrep.ps1 -------------------------------------------------------------------------------- /Tools/MassUpgradeWindows10/Invoke-ComputerUpgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MassUpgradeWindows10/Invoke-ComputerUpgrade.ps1 -------------------------------------------------------------------------------- /Tools/MassUpgradeWindows10/Invoke-ImageDownload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MassUpgradeWindows10/Invoke-ImageDownload.ps1 -------------------------------------------------------------------------------- /Tools/MassUpgradeWindows10/computers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MassUpgradeWindows10/computers.txt -------------------------------------------------------------------------------- /Tools/MonitorMDT/MonitorMDT.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/MonitorMDT/MonitorMDT.ps1 -------------------------------------------------------------------------------- /Tools/NANORefImageModule/NANORefImageModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/NANORefImageModule/NANORefImageModule.psm1 -------------------------------------------------------------------------------- /Tools/NANORefImageModule/NewNANORefImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/NANORefImageModule/NewNANORefImage.ps1 -------------------------------------------------------------------------------- /Tools/New-HyperVM/New-HyperVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/New-HyperVM/New-HyperVM.ps1 -------------------------------------------------------------------------------- /Tools/OptimizeVHDs/OptimizeVHDs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/OptimizeVHDs/OptimizeVHDs.ps1 -------------------------------------------------------------------------------- /Tools/OptimizeVHDs/OptimizeVIAVHD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/OptimizeVHDs/OptimizeVIAVHD.ps1 -------------------------------------------------------------------------------- /Tools/RemoveVMwUI/RemoveVMwUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RemoveVMwUI/RemoveVMwUI.ps1 -------------------------------------------------------------------------------- /Tools/RemoveVMwUI2/RemoveVMwUI2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RemoveVMwUI2/RemoveVMwUI2.ps1 -------------------------------------------------------------------------------- /Tools/RestPSFiles/Install Choclaty and NSSM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RestPSFiles/Install Choclaty and NSSM.ps1 -------------------------------------------------------------------------------- /Tools/RestPSFiles/Install NuGet and PowerShellGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RestPSFiles/Install NuGet and PowerShellGet.ps1 -------------------------------------------------------------------------------- /Tools/RestPSFiles/Install and Configure RestPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RestPSFiles/Install and Configure RestPS.ps1 -------------------------------------------------------------------------------- /Tools/RestPSFiles/Make RestPS a Services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RestPSFiles/Make RestPS a Services.ps1 -------------------------------------------------------------------------------- /Tools/RestPSFiles/Start RestPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RestPSFiles/Start RestPS.ps1 -------------------------------------------------------------------------------- /Tools/RestPSFiles/StartRestPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RestPSFiles/StartRestPS.ps1 -------------------------------------------------------------------------------- /Tools/RestPSFiles/Test RestPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/RestPSFiles/Test RestPS.ps1 -------------------------------------------------------------------------------- /Tools/Running-ParJobs/Running-ParJobs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Running-ParJobs/Running-ParJobs.ps1 -------------------------------------------------------------------------------- /Tools/Save-AllRunningVMs/Save-AllRunningVMs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Save-AllRunningVMs/Save-AllRunningVMs.ps1 -------------------------------------------------------------------------------- /Tools/Set-TSxTimesync/Set-TSxTimesync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Set-TSxTimesync/Set-TSxTimesync.ps1 -------------------------------------------------------------------------------- /Tools/Start-VIADeDupJob/Start-VIADeDupJob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Start-VIADeDupJob/Start-VIADeDupJob.ps1 -------------------------------------------------------------------------------- /Tools/TSxWrite-MDTMonitor/TSxWrite-MDTMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/TSxWrite-MDTMonitor/TSxWrite-MDTMonitor.ps1 -------------------------------------------------------------------------------- /Tools/Test-ModernDriverPackage/Test-ModernDriverPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeploymentBunny/Files/HEAD/Tools/Test-ModernDriverPackage/Test-ModernDriverPackage.ps1 --------------------------------------------------------------------------------