My Favorite Applications

Download Report

Transcript My Favorite Applications

Reinsel Kuntz Lesher, LLP
IT ROUNDTABLE 3/17/2010
PART 1: DOS SHELL TRICKS



Outline Overview
netstat -an (-ano will give the PID)
ftp




bin
mget
mput
telnet

telnet bobm.us 25




helo
mail from:name@address
rcpt to:enduser@address
data

attrib

subst

net view
tree
ipconfig/flushdns
systeminfo








+h +r +s
/d
uptime
computer model and s/n
Nics

dir search

Snagit
Samurize


dir win*/s/p
PART 2: MY FAVORITE APPS
Applications I carry on a USB Stick
 Applications I have installed
 All are free or FOSS

7-ZIP
Opens most zip archives
 Very Small
 Nice shell integration
 Better compression
 Tar / tgz in windows

CPU - Z





Displays Information about CPU / Memory
http://www.cpuid.com/cpuz.php
Very Small
No Installer / Portable
Can check DIMM Size
GPU - Z
Displays Information about Graphics Cards
 http://www.techpowerup.com/gpuz/
 Very Small
 No Installer / Portable
 Can check video memory

WAKE ON LAN
Very small (15k)
 Portable
 Only need MAC Address
 http://www.nyxbull.com/

COMBO FIX
Portable
 Auto – Updates
 Kills rootkits to allow other software to run
 http://combofix.org/

INSSIDER
Wireless Network Sniffing
 Windows 7 Compatible
 http://www.metageek.net/products/inssider
 Display SSID
 Display S/N

NMAP
Network Scanner
 Shows open ports on remote systems
 www.insecure.org

PROCESS EXPLORER
Provided free from sysinternals
 http://technet.microsoft.com/enus/sysinternals/bb896653.aspx
 Lets you see image path
 Advanced views
 Portable

PAINT DOT NET
Ability to do photo retouching and layers freely
 Small Footprint
 http://www.paint.net/

NOTEPAD ++
Color codes tags for many formats
 http://notepadplus.sourceforge.net/uk/site.htm
 Tabbed display
 Side by side views

PRODUCT KEY UPDATE TOOL
http://www.microsoft.com/genuine/selfhelp/P
KUInstructions.aspx
 Windows XP
 Change Keys Easy

MAGICAL JELLY BEAN
Allows recovery of product keys
 http://magicaljellybean.com/keyfinder/
 Small & Portable

CCLEANER
Disk Cleanup on Steroids
 Cleans up all sorts of temp files
 Registry Cleaner
 Auto-Start Checking
 www.ccleaner.com

WINDOWS 7 SNIPPING TOOL
Easily clip small parts of the screen
 Save to multiple file formats

ISO RECORDER V2/V3
http://isorecorder.alexfeinman.com/
 Allows for burning of ISO images easy
 Small install
 Windows XP

YOUR FAVORITES??

I am *always* looking for new tools!
PART 3: POWERSHELL AND SPICEWORKS
Two technologies that can be used to manage
 Free
 Drop in replacement for cmd prompt

POWERSHELL: SCRIPTING & MORE

Powershell 2.0






Requirements
-Windows Management Framework (Includes)
-Windows Remote Management
-Windows Powershell 2.0
-Background Intelligent Transfer
Service (BITS) 4.0


The powershell team added approx. 100 new cmdlets
POWERSHELL: EXAMPLES


On systems that you want to remotely execute powershell commands without
interfacing WMI, you need to enable WinRM through powershell. To do this, run the
following command:


Enable-psremoting


To disable run:


Disable-psremoting


To run a command on a remote machine that is fully running and accepting WinRM
access, you can use the invoke cmdlet to execute scripts and/or commands like the
following:


Invoke-Command –ComputerName “Remote PC” –ScriptBlock {get-hotfix}
POWERSHELL: QUEST AD CMDLETS

Also, you can download the Quest AD cmdlets from the following site
http://www.quest.com/powershell/activeroles-server.aspx which will allow you to query AD for
specific objects and/or attributes.


For example, in your default Powershell profile script, you need to add the following………………….”AddPSSnapin Quest.ActiveRoles.ADManagement” to the top of your profile script before you run any
commands.


Then you can create a function similar to the following………..




\\creates the command to run from the shell







function ext ($user)
{
$user = read-host "Enter Part of Name or extension"
$final = "*$user*"
get-qaduser -DisplayName "$final" | select DisplayName
}
SPICEWORKS: FREE NETWORK MANAGEMENT
Network Inventory
 Network Management
 Ticketing System
 Custom email notifications
