Advanced Search
Search Results
12 total results found
Nginx Proxy Manager
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...
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
Turn on the Windows Admin Share
This is executed from an elevated Command Line REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\system /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f
Change Windows DNS
Show the current configuration netsh interface ip show config Set the Static DNS netsh interface ip set dns "Local Area Connection" static 195.46.39.39 netsh interface ip add dns nam"Local Area Connection" static 195.46.39.40 index=2 netsh interface ip se...
Domain Controllers Sync Password Reset
Command netdom resetpwd /s:{servername} /ud:{Username} /pd:* Example netdom resetpwd /s:wrsi-adfs /ud:wrsi.local\pitadmin /pd:Mis-staff
Map Network Drive - Command Line
Example of mapping a drive from the command line net use m: \\server01\share Example of mapping a drive from the command line that persists after logoff net use m: \\server01\share /persistent:Yes
Change IP and Gateway from Shell
Change IP ifconfig <interface_name> <ip_address> netmask <netmask_address> Change Gateway sudo route add default gw <gateway_ip_address> <interface_name> Example sudo ifconfig Ethernet 10.0.100.27 netmask 255.255.255.0 sudo route add default gw 10.0.10...
Access Pihole via NPM
To add Pi-hole to Nginx Proxy Manager, you can follow these steps: Login to Nginx Proxy Manager: Open your web browser and navigate to your Nginx Proxy Manager dashboard. Add Proxy Host: Click on the "Proxy Hosts" tab on the left sidebar and then cli...