Advanced Search
Search Results
192 total results found
Proxmox Host
Kill All Mobs
Quick and Dirty, use this command to kill all Mobs except a few. /kill @e [[type=!player,type=!armor_stand,type=!minecart,type=!wolf,type=!cat] More can be found in the Minecraft Wiki - How to Kill all Mobs in Minecraft
Proxmox VMs
Proxmox Virtual Machines
LXC Containers
LXC Containers on Proxmox
Ubuntu Specific KB
KBs specific to Ubuntu
Idle time out GPO for Remote Desktop Services sessions not working in Windows 2019 servers
By default, the user’s RDP session in Windows may stay disconnected until the user or administrator terminates, or the computer is restarted. However, it is quite convenient since a user may connect to his old RDP session and go on working with running program...
No RDS Licenses available
Cause This generally is a message that is displayed on the client machine and is not really what it says. It is just that the client does not think it has a license for RDS To fix this issue To fix this, the following can be copied and pasted in a .reg file...
Battery Test
WMIC PATH Win32_Battery Get EstimatedChargeRemaining Or powercfg /batteryreport /OUTPUT "c:\Admin\batteryreport.html"
Check the state of Windows Activation
slmgr.vbs /xpr Typical Output:
Windows Command Line Firewall Commands
To Turn Off: NetSh Advfirewall set allprofiles state off NetSh Advfirewall set domainprofile state off To Turn On: NetSh Advfirewall set allprofiles state on NetSh Advfirewall set domainprofile state on To check the status of Windows Fire...
Copy files with permissions
xcopy x:*.* y:*.* /D /E /C /F /H /K /O /Y
Disable IPV6
Commands to disable IPV6 netsh interface teredo set state disabled netsh interface ipv6 6to4 set state state=disabled undoonstop=disabled netsh interface ipv6 isatap set state state=disabled
Disable LLMNR
From and elevated Command Line REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” /v ” EnableMulticast” /t REG_DWORD /d “0” /f
Find Public IP from Command Line
nslookup myip.opendns.com resolver1.opendns.com
Get WiFi Password
List all known WiFi Networks netsh wlan show profiles Show password for a known WiFi Network netsh wlan show profile name={wifiname} key=clear
Lock Computer
rundll32.exe user32.dll,LockWorkStation
Map a drive as a different user
Map a drive net use y: \\server-1\cpas /USER:server-1\famme @TimeSheets /PERSISTENT:YES Delete a mapped drive net use y: /delete
Windows Memory Information
For Total Physical Memory wmic ComputerSystem get TotalPhysicalMemory For Available Physical Memory wmic OS get FreePhysicalMemory Capacity of each bank wmic memorychip get capacity
Stop Windows from Sleeping
powercfg -change -standby-timeout-ac 0
Rebuild Windows Search Database
This is a CMD file and when run stop the Windows Search and force a rebuild of the database. sc config wsearch start= disabled net stop wsearch REG ADD "HKLM\SOFTWARE\Microsoft\Windows Search" /v SetupCompletedSuccessfully /t REG_DWORD /d 0 /f del "%Progra...