Select Page

MAC – Disable Remote Access

Required Files: None #!/bin/sh echo “yes” | sudo systemsetup -setremotelogin off > /dev/null 2>&1   #!/bin/sh echo "yes" | sudo systemsetup -setremotelogin off > /dev/null 2>&1#!/bin/sh echo "yes" | sudo systemsetup...

Clear Teams Cache

Required Files: None   Write-Host "Closing Teams in order to clear cache" try{ Get-Process -ProcessName Teams | Stop-Process -Force Start-Sleep -Seconds 5 Write-Host "Teams is now closed" } catch{ echo $_ } # Now clean temp file...

MAC – Kill_Restart CoreAudio

Required Files: None #!/bin/sh kill -9 `ps ax|grep ‘coreaudio[a-z]’ | awk ‘{print $1}’`   #!/bin/sh kill -9 `ps ax|grep 'coreaudio[a-z]' | awk '{print $1}'`#!/bin/sh kill -9 `ps ax|grep 'coreaudio[a-z]' | awk '{print...

NumLock ON at login

Required Files: None Set the NumLock to ON at Windows Login screen   #Set NumLock ON at Windows login screen   $path = 'HKU:\.DEFAULT\Control Panel\Keyboard\' $name = 'InitialKeyboardIndicators' $value = '2' Set-Itemproperty -Path $path -Name $name -Value $value...