When an Outlook plugin will not enable or reenable
article #1273, updated 2083 days ago

Sometimes, newer versions of Outlook will hard-fail a plugin, so that none of the standard GUI changes will permit it to reenable. When this happens, you can override by deleting everything here:

HKEY_CURRENT_USER\Software\Microsoft\Office\[version number]\Outlook\Resiliency\DisabledItem

This does enable every plugin, so there is a bit of danger.

Categories:      

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

FQDNs to block Facebook
article #1269, updated 2094 days ago

Known list at this writing:

*.facebook.com
*.facebook.net
*.fbcdn.com
*.fbcdn.net
*.instagram.com
*.cdninstagram.com
*.tfbnw.net
*.fbsbx.com
*.fb.com

Categories:      

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

Great way to handle non-private screenshots
article #1268, updated 2104 days ago

Try this:

https://snag.gy/

Categories:      

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

Using Contig to defrag
article #1266, updated 2121 days ago

The command is CONTIG (also available in 64-bit as CONTIG64), is a Sysinternals:

https://docs.microsoft.com/en-us/sysinternals/downloads/contig

It defrags, and does it very well. It does it file by file. Here’s a command probably suitable for background operation on a whole C drive, on a 64-bit machine, quiet mode:

start /LOW contig64 -s -q C:\*

Categories:      

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

Convert MBR to GPT without destroying data
article #366, updated 2122 days ago

There is a utility, for Windows, Linux, and Mac, which will convert MBR disks to GPT without destroying data. (Please note that it does NOT preserve data if you’re using an “extended” partition!!!!) It is called “GPT fdisk”, and it is here:

http://www.rodsbooks.com/gdisk/download.html

Binaries for Windows can be downloaded here:

https://sourceforge.net/projects/gptfdisk/files/latest/download

In Windows, gdisk.exe needs one parameter, which is a drive number followed by a colon. Drive numbers are not letters; they can be obtained using the GUI Disk Manager or using ‘list disk’ in DISKPART on the command line.

C:\Documents and Settings\Administrator>diskpart

Microsoft DiskPart version 5.2.3790.3959
Copyright (C) 1999-2001 Microsoft Corporation.
On computer: SITEFS

DISKPART> list disk

  Disk ###  Status      Size     Free     Dyn  Gpt
  --------  ----------  -------  -------  ---  ---
  Disk 0    Online       232 GB  8033 KB
  Disk 1    Online       466 GB      0 B
  Disk 2    Online       932 GB      0 B
  Disk 3    Online       931 GB      0 B
  Disk 4    Online       931 GB      0 B

DISKPART> exit

All you have to do to convert, is to run gdisk on a given drive:

gdisk 3:

say yes to all of the prompts, and then use the single command “w” for “write” the new partition table, and confirm. Then you will need to restart the “Virtual Disk” service if it’s running:

sc stop vds
sc start vds

and then test your results using DISKPART from the command line; the GPT disks will be starred as such.

DISKPART> list disk

  Disk ###  Status      Size     Free     Dyn  Gpt
  --------  ----------  -------  -------  ---  ---
  Disk 0    Online       232 GB  8033 KB
  Disk 1    Online       466 GB      0 B
  Disk 2    Online       932 GB  2550 KB        *
  Disk 3    Online       931 GB  2173 KB        *
  Disk 4    Online       931 GB  2173 KB        *

DISKPART>

Categories:      

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

String substitution in multiple files by command line
article #1264, updated 2126 days ago

Once you have ‘pip’, you can do:

sudo pip install repren

repren is very effective.

Categories:      

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

Thoughts for Generating Good Passwords
article #1262, updated 2126 days ago

Mr. Jack Foster has written an excellent article on this topic:

https://www.vpngeeks.com/how-to-secure-your-passwords

Categories:      

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

Kaspersky Lab Products Remover
article #1261, updated 2136 days ago

This tool:

https://support.kaspersky.com/1464

will remove Kaspersky products without too much of a fight.

Categories:      

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

Automatic Microsoft SQL Tuning
article #1260, updated 2136 days ago

It exists as of SQL 2017:

https://docs.microsoft.com/en-us/sql/relational-databases/automatic-tuning/automatic-tuning?view=sql-server-2017

Categories:      

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

Silent install of ESET items via command line
article #1259, updated 2161 days ago

Use these all together:

--silent --accepteula --avr-disable

Categories: