Invisible rules in Outlook/Exchange
article #1027, updated 3002 days ago

If you find that inbound emails are not going where they should go, but cannot find any Rules in Outlook or Exchange to match, they may be slightly corrupt and thus invisible. If you run Outlook with /cleanrules and /cleanconvongoingactions , this will eliminate all rules and also a queue which can be involved. A full list of command-line switches for Outlook, is here:

https://support.office.com/en-us/article/Command-line-switches-for-Outlook-for-Windows-079164CD-4EF5-4178-B235-441737DEB3A6

Categories:      

==============

Startup Folders in Windows 8.1 and 10
article #1025, updated 3006 days ago

Driving Explorer with this as address:

shell:startup

will get you the per-user startup folder. The public startup folder can be driven using this:

shell:common startup

Categories:      

==============

Remove all network printers by VBS
article #1024, updated 3006 days ago

This works well:

Option Explicit
Dim strComputer

strComputer = "."

Dim objWMI,networkPrinters,networkPrinter
Set objWMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

Set networkPrinters = objWMI.ExecQuery("Select * From Win32_Printer Where Network = true") 

For Each networkPrinter in networkPrinters 
    networkPrinter.Delete_ 
Next 

Set networkPrinter = Nothing
Set networkPrinters = Nothing
Set objWMI = Nothing

Categories:      

==============

QuickBooks Desktop Install Diagnostic Tool
article #1023, updated 3010 days ago

This is a tool from QuickBooks, new to me, which can fix a lot of different Windows library and other issues, to be used sometimes when QuickBooks fails to install.

https://community.intuit.com/articles/1019962-fix-common-installation-errors-using-the-qbinstall-tool

Categories:      

==============

Excellent remote support for Windows, including UAC handling
article #705, updated 3013 days ago

Try this:

https://www.zoho.com/assist/

Categories:      

==============

Remote Procedure Call Locator (RPC Locator) Service
article #1020, updated 3016 days ago

This is a service to be found in many versions of Windows, but its in-OS documentation states that it is present for application compatibility only. And yet on at least one LAN it has been seen to be essential for printing. Research has provided no results. Anyone with input, please contact me by email!

Categories:      

==============

United Parcel Service and Firewalls
article #1019, updated 3026 days ago

A page has been recently deleted from the UPS web site, which included:

If I connect to UPS servers through a firewall, are there any known issues?

Because the response from the UPS server may show as unsolicited to your firewall software, you may need to configure your firewall software to accept messages from our unique range of UPS IP address ranges: “207.24.0.*”

At this writing, an in-site search on http://ups.com and a Google search still brings up the page reference, but the page is gone.

Categories:      

==============

DNS Root Servers
article #1017, updated 3032 days ago

As of this writing, the current authoritative list, from here:

https://www.iana.org/domains/root/servers

is:

a.root-servers.net 198.41.0.4 2001:503:ba3e::2:30 VeriSign, Inc.
b.root-servers.net 192.228.79.201 2001:500:84::b University of Southern California (ISI)
c.root-servers.net 192.33.4.12 2001:500:2::c Cogent Communications
d.root-servers.net 199.7.91.13 2001:500:2d::d University of Maryland
e.root-servers.net 192.203.230.10 2001:500:a8::e NASA (Ames Research Center)
f.root-servers.net 192.5.5.241 2001:500:2f::f Internet Systems Consortium, Inc.
g.root-servers.net 192.112.36.4 2001:500:12::d0d US Department of Defense (NIC)
h.root-servers.net 198.97.190.53 2001:500:1::53 US Army (Research Lab)
i.root-servers.net 192.36.148.17 2001:7fe::53 Netnod
j.root-servers.net 192.58.128.30 2001:503:c27::2:30 VeriSign, Inc.
k.root-servers.net 193.0.14.129 2001:7fd::1 RIPE NCC
l.root-servers.net 199.7.83.42 2001:500:9f::42 ICANN
m.root-servers.net 202.12.27.33 2001:dc3::35 WIDE Project

Categories:      

==============

Set all OUs to protected from accidental deletion
article #1018, updated 3032 days ago

Run the following within Active Directory Module for Windows PowerShell:

Get-ADobject -LDAPFilter "objectClass=organizationalUnit" -SearchBase "DC=domainname,DC=local" | Set-adobject -ProtectedFromAccidentalDeletion $true

Categories:      

==============

Download current ISOs for Windows 7, 8.1, and 10
article #1015, updated 3035 days ago

A very nice downloader provided by Microsoft:

https://www.microsoft.com/en-us/software-download/windows8

Categories: