windowscommands
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
windowscommands [2021/05/25 10:20] – z0hpvk | windowscommands [2025/03/08 22:24] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====Powershell==== | + | =====Powershell===== |
- | + | ||
- | ===Disable WSUS=== | + | |
+ | ====Disable WSUS==== | ||
+ | Windows Server Update Services \\ | ||
Check Registry Key ...\\ | Check Registry Key ...\\ | ||
Line 20: | Line 20: | ||
</ | </ | ||
- | ===System Information=== | + | ====System Information==== |
- | < | + | < |
Get-CimInstance -ClassName Win32_ComputerSystem -ComputerName (Get-Content -Path ' | Get-CimInstance -ClassName Win32_ComputerSystem -ComputerName (Get-Content -Path ' | ||
Get-CimInstance -ClassName Win32_OperatingSystem | Select CSName, Version, OSArchitecture, | Get-CimInstance -ClassName Win32_OperatingSystem | Select CSName, Version, OSArchitecture, | ||
Line 27: | Line 27: | ||
</ | </ | ||
- | ====Install RSAT==== | + | ====Tail==== |
+ | <code powershell> | ||
+ | Get-Content -Path catupgrd0.log -Tail 30 -Wait | ||
+ | </ | ||
- | < | + | ====Network Connectivity==== |
+ | < | ||
+ | Test-Connection -ComputerName IAN-SERVER -Quiet | ||
+ | Test-NetConnection -ComputerName IAN-SERVER -Port 1521 -InformationLevel Detailed | ||
+ | </ | ||
+ | |||
+ | ====Install RSAT==== | ||
+ | Remote Server Administration Tools \\ | ||
+ | <code powershell> | ||
Get-WindowsCapability -Online | Where-Object {$_.Name -like " | Get-WindowsCapability -Online | Where-Object {$_.Name -like " | ||
Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 | Add-WindowsCapability -Online -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 | ||
Line 37: | Line 48: | ||
</ | </ | ||
- | ====Block USB Storage==== | + | ====Environment Variables==== |
+ | <code powershell> | ||
+ | $env:PATH = $env:PATH + "; | ||
+ | $env:PATH | ||
+ | Get-ChildItem env: | ||
+ | </ | ||
+ | |||
+ | =====Block USB Storage===== | ||
__Use Group Policy Editor__\\ | __Use Group Policy Editor__\\ | ||
Computer Configuration > Administrative Templates > System > Removable Storage Access\\ | Computer Configuration > Administrative Templates > System > Removable Storage Access\\ |
windowscommands.1621938051.txt.gz · Last modified: 2025/03/08 22:23 (external edit)