
Software generally allows for customization to fit various preferences.
Browsers
Plugins, add/remove/disable
Internet Explorer
a. Tools > manage add-ons, then select to Show "all add-ons"
b. Gear icon > manage add-ons, then select to Show "all add-ons"
FireFox
a. Tools > add-ons > plugins
b. Menu icon > add-ons > plugins
Chrome
a. Type "about:plugins" OR "chrome:plugins" in the address bar
b. Chrome Menu Button icon --> Settings --> Click Show advanced settings --> In the "Privacy section", click the Content settings button
Microsoft Office
Disable smart quotes
To disable special formating
Auto formatting in Office software is handy, but when not wanted, simply undo immediately after the correcting happens and it will revert to the unaltered text you typed, in most cases.
- Go to Options > Proofing
- Click AutoCorrect Options
- uncheck Replace Straight quotes with smart quotes
- uncheck Replace Hyphens with dash
- May need to restart Word
Auto formatting in Office software is handy, but when not wanted, simply undo immediately after the correcting happens and it will revert to the unaltered text you typed, in most cases.
Outlook, Stop multiple instances
Windows7/10
- Locate the file "OUTLOOK.EXE"
-
Create shortcut with the full path as target.
eg:"C:\Program Files (x86)\Microsoft Office\Office15\OUTLOOK.EXE"
- Click finish
- Right click on the new link and choose properties
-
Add the parameters
/recycle /nopreview
to the end of the target:"C:\Program Files (x86)\Microsoft Office\Office15\OUTLOOK.EXE" /recycle /nopreview
Microsoft Windows
Quick Access Bar, help with difficult to find items
Some software allows adding "shortcut" icons on the title bar (AKA "quick access toolbar").
Adding some of the commonly use but hard to find menu item to the quick access toolbar can help.
- Find item in ribon
- Right click
- "Add to quick access toolbar"
Persistent Shortcut from Desktop - Removal
Windows7/10
To remove shortcuts from desktop
Go into your IT department and managers desks every morning and find a stapler and place it on their desk until they change their policies.
- create a text file with .bat as the file extension
eg:C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\deleteShortcuts.bat
- Add to the file
del "C:\Users\YourWindowsUserName\Desktop\shortCutNameHere.lnk"
Go into your IT department and managers desks every morning and find a stapler and place it on their desk until they change their policies.
Warnings when using Desktop shortcuts - Removal
To stop the warning on shortcuts on desktop (or other locations)
Windows7
- create a text file with .bat as the file extension
eg:C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\fixShortcuts.bat
- Add to the file
cd C:\Users\YourWindowsUserName\Desktop
icacls *.lnk /L /SetIntegrityLevel med - To include other locations just add as follows
cd C:\Users\YourWindowsUserName\Favorites\Links
icacls *.* /L /SetIntegrityLevel med
The above may only work for Windows 7, here is another way that may work better in Windows 10
Windows10?
- Go to Control Pannel > Internet Options > Security tab
- Click [Custom Level]
- Enable "Launching applications and unsafe files"
Yes, Enable
Show file extensions
Windows7
- Open File Manager (windows Explorer)
- Click Folder Options
- uncheck Hide Extensions for known file types
Persistent shortcut from desktop, removal
Windows7/10
To remove shortcuts from desktop
Go into your IT department and managers desks every morning and find a stapler and place it on their desk until they change their policies.
- create a text file with .bat as the file extension
eg:C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\deleteShortcuts.bat
- Add to the file
del "C:\Users\YourWindowsUserName\Desktop\shortCutNameHere.lnk"
Go into your IT department and managers desks every morning and find a stapler and place it on their desk until they change their policies.
Window Borders, and Colour settings
Windows10
Yes, this old theme works in Windows10
If the original theme can not be found from a proper source, try this site
- Find and install old aeroLite.theme
- Modify theme to restore borders
Yes, this old theme works in Windows10
If the original theme can not be found from a proper source, try this site
Shortcuts and Command Line Parameters
File manager, open to default directory
- Right click > new > shortcut
-
Type the directory you want to start in. eg:
c:\projects\documents
- Click finish
Remote desktop, quick connect
Note: This only works if company has not disabled the use of saved credentials
- create a text file with .bat as the file extension
eg:C:\Users\YourWindowsUserName\Desktop\RemoteDesktopLinks\theWebServer.bat
- Add to the file
cmdkey /generic:serverNameORIPAddress /user:serverUsername /pass:serverPassword C:\Windows\System32\mstsc.exe /v:serverNameORIPAddress
Various Odds and Ends
Robocopy, delete old files
Create a dos batch file and include this. It will delete 5 day old files from C:\BACKUP\daily
WARNING: if there are no new files being generated, this will delete everything in 5 days! echo deleting 5 day old files...
WARNING: if there are no new files being generated, this will delete everything in 5 days! echo deleting 5 day old files...
SVN, edit comments
I found a batch file full and complete with no need to edit.
Must be named pre-revprop-change.bat and placed in the repository /hooks directory: