Managing Microsoft Windows

From Jeremy Bryan Smith
Revision as of 16:35, 18 October 2017 by Jeremy (talk | contribs)
Jump to navigation Jump to search

How to manage Microsoft Windows without losing your sanity:

  • sysinternals tools
    Install in c:\bin and add to system path.
  • Windows Servers Tools (Microsoft Windows Software Development Kit [SDK])

System

  • Secunia PSI - Keeps apps updated, shows you outdated versions and updates available
  • WinCDEmu - Mount ISO files as virtual CD-ROM drives
  • HashTab - Provides file hashes in the file properties dialog

Usability

  • 4t Tray Minimizer - Provides the much-needed winshade functionality to the Windows "windows manger"
  • VirtuaWin - Provides virtual desktop capability

Applications

  • WinMerge - Does visual file/folder diffs
  • gVim - Graphical vim for Windows

Malware Detection / Removal

  • rootkit revlealer
  • Junkware Removal Tool
  • ComboFix
  • ClamAV
  • ADWCleaner
  • RKill
  • TDSSKiller
  • Etc from bleepingcomputer.com
  • Microsoft Security Essentials
  • 360 total security (varius systems checks / fixes)


Exchange

MFCMAPI

VNC when not installed

If you have the cygwin SSH server installed but not TightVNC yet, you can do the following in order to connect to the desktop:

  1. Copy psexec.exe and tvnserver.exe to the server
    scp tvnserver.exe psexec.exe user@server:/cygdrive/c/
  2. SSH to server
    me@desktop ssh user@server
  3. Accept psexec EULA
    user@server# /cygdrive/c/psexec.exe -accepteula
  4. Start TightVNC Server on desktop session 1
    user@server# /cygdrive/c/psexec.exe -s -h -i 1 "c:\Program Files\TightVNC\tvnserver.exe"
  5. In another shell, connect out to remote
    user@server# /cygdrive/c/tvnserver.exe -controlapp -connect jeremybryansmith.com
  6. Shut it down
    user@server# /cygdrive/c/tvnserver.exe -controlapp -shutdown
  7. You may have to force shutdown
    user@server# taskkill /IM tvnserver.exe