Advanced Search
Search Results
272 total results found
Formula To Add * At The End Of Line
=A2 & "*"
Lug Nut Torque
90-ft lbs
How To Find My Public IP Address From Linux CLI
Introduction How do I find out my public IP address on the Linux and OS X Unix command line to use with my own bash shell script without using third party web site? Is there command-line option which will show my dynamic IP address on a Ubuntu or Fedora Linux...
Take Ownership and Change Admins to Full Rights
$folderMask = "C:\Program Files\WindowsApps\Microsoft.DesktopAppInstaller_*" $folders = Get-ChildItem -Path $folderMask -Directory | Where-Object { $_.Name -like "*_x64_*" } foreach ($folder in $folders) { $folderPath = $folder.FullName TAKEOWN /F ...
SMB ACL Group Creation Script
Asks you for a root folder, then allows you to enter subfolders until you leave an entry empty. Next it asks for the server name. Will create all four permission types and also apply default server, domain, and enterprise admins to the full access group. para...
Welcome to MutschlerHome
Introduction Welcome to The section below will give some information about Plex, what it is, and how to use it. It will also provide suggestions on players to use for the best experience. Enjoy! What's Plex? So what is Plex anyway? You can think of Plex a...
Gathering Logs From a Roku Device
Gathering Logs from a Roku Device For investigating tricky issues, we may ask you to share your logs. Logs from the Roku If you need to share logs with a MutschlerHome team member to troubleshoot something, you can enable logging. App logs can provide impor...
Add Local Account To DRAC
racadm config -g cfgUserAdmin -o cfgUserAdminUserName -i 2 USERNAME racadm config -g cfgUserAdmin -o cfgUserAdminPassword -i 2 PASSWORD
Add Multiple DNS Servers Via Command Line
netsh interface ipv4 add dnsserver name="Local Area Connection" address=192.168.100.48 index=2 From https://practical365.com/exchange-server/how-to-add-multiple-dns-servers-to-windows-server-2008-core/
Compress WinSxS Folder
Query service status. Track its state. sc query msiserver sc query TrustedInstaller Stop/disable Windows Installer and Windows Module Installer services sc stop msiserver sc config msiserver start= disabled sc stop TrustedInstaller sc config Tru...
Disable IE ESC using Script on Windows Servers
If you want to disable the IE Enhanced Security on multiple Windows Servers, you can run the below VB Script. This script is provided by Microsoft and works on most of Windows Server operating systems. Perform the following steps to disable Internet Explorer ...
ICACLS Backup/Restore
Open an elevated cmd prompt.Save icacls E:\ /save "E:\ntfsDdrive.txt /t /c Restore icacls E:\ /restore "E:\ntfsDdrive.txt From https://social.technet.microsoft.com/Forums/en-US/8299036a-3cfe-40d7-beb8-becd2e56c2f4/icacls-syntax-issues-with-backup-restore?f...
List Installed Programs
gwmi win32_product | ft name, version, ident*
List and Logoff RDP Users Remotely
To get a list of the Remote Sessions in the command window (Get the session Id of user to kick out): qwinsta /server:SERVERIP To disconnect the remote session: rwinsta /server:SERVERIP SESSIONID From http://superuser.com/questions/62498/kicking-logging-out...
Ping With Log
@echo off set /p host=host Address: set logfile=Log_%host%.log echo Target Host = %host% >%logfile% for /f "tokens=*" %%A in ('ping %host% -n 1 ') do (echo %%A>>%logfile% && GOTO Ping) :Ping for /f "tokens=* skip=2" %%A in ('ping %host% -n 1 ') do ( ...
Remove Folder With . At End Of It
rd /s "\\?\C:\Documents and Settings\User\Desktop\Annoying Folder." From https://stackoverflow.com/questions/4075753/how-to
Remove Font Cache
forfiles /P C:\Windows\ServiceProfiles\LocalService\AppData\Local /M FontCache* /D -30 /C "cmd /c del @path" From https://social.technet.microsoft.com/Forums/windows/en-US/3795364f-b66c-43ae-82d3-8ed5eb1aa2ce/local-service-system-profile-grown-to-extremely-la...
Remove Patches Via Command Line
Works on Windows Server 2008R2, 7, 8 and higher Find the list of packages installed on the machine with the issue by performing this command dism /online /get-packages /format:table for ease of reading I did the following: dism /online /get-packages /f...