This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' Requires Get-RemoteProgram.ps1 from https://gallery.technet.microsoft.com/scriptcenter/Get-RemoteProgram-Get-list-de9fd2b4#content | |
Get-ADComputer -Filter { OperatingSystem -Like '*Windows Server*' } | ForEach-Object { | |
Get-RemoteProgram -ComputerName $_.Name | |
} | Export-Csv serverapps.csv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update-ExecutionPolicy Unrestricted | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Enable-RemoteDesktop | |
Disable-InternetExplorerESC | |
Enable-MicrosoftUpdate | |
cinst 7zip.install | |
cinst TelnetClient -source windowsFeatures | |
Install-WindowsUpdate -AcceptEula |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
Set RegQry=HKLM\Hardware\Description\System\CentralProcessor\0 | |
Reg.exe Query %RegQry% > checkOS.txt | |
Find /i "x86" < checkos.txt > StringCheck.txt | |
If %ERRORLEVEL% == 0 ( | |
ECHO 32-bit OS Detected |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-WindowsUpdate -AcceptEula |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update-ExecutionPolicy Unrestricted | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Enable-RemoteDesktop | |
#Disable-InternetExplorerESC | |
cinst lastpass | |
cinst console-devel | |
cinst 7zip.install | |
cinst javaruntime | |
cinst adobereader |