Category: Uncategorized

AGM & Wet Battery State Of Charge

These are always handy to have on hand, to look after your battery. Try to never fall into the orange area, and most certainly shut down if you get into the red area, you’ll be killing the battery. Note these voltages need to be read with nothing drawing on the battery for around 10 minutes …

Continue reading

Change Windows Firewall Profile

I am continually needing to change peoples firewall profiles in my job as when Windows Updates come through or when connected to another network, people always seem to choose No, don’t allow my computer to be found on the network. This puts them into the public network category and locks their computer down. Problem is …

Continue reading

Identify The IP Address Of A WSD Installed Printer

Here is a way to discover the IP address of a WSD printer <code>Get-PrinterPort | fl name Get-PrinterPort -name WSD-number -computername YourPrintserver | ft DeviceURL</code> Another way is to just <code>Get-PrinterPort | fl</code> and scroll through 😉

Outlook Signatures Window Not Openning

Having troubles openning the signatures window in Outlook 2016 after installing the Office 365 version. Try the below commands to fix it in an elevated power shell prompt: <code>Set-TimeZone -Name “W. Australia Standard Time” Get-AppxProvisionedPackage -online | where { $_.Packagename -like ‘*Office*’ } | Remove-AppxProvisionedPackage -Online Get-AppxPackage | ? { $_.Name -like “*Office*” } | …

Continue reading