May 2018 archive

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