Monday, October 29, 2012

Unable to Delete File ?

Utility: Handle.exe from Sysinternals

The syntax is handle.exe -p -c -y.

C:\Toolbox>Handle.exe plugin.jar

Handle v3.2
Copyright (C) 1997-2006 Mark Russinovich
Sysinternals - www.sysinternals.com

firefox.exe pid: 5508 5B4: C:\Java\jre5\lib\plugin.jar
java.exe pid: 4632 638: C:\Java\jre5\lib\plugin.jar
java.exe pid: 6332 628: C:\Java\jre5\lib\plugin.jar

C:\Toolbox>Handle.exe -p 5508 -c 5b4 -y

Handle v3.2
Copyright (C) 1997-2006 Mark Russinovich
Sysinternals - www.sysinternals.com

 5B4: File (RW-) C:\Java\jre5\lib\plugin.jar

Handle closed.

C:\Toolbox>Handle.exe plugin.jar

Handle v3.2
Copyright (C) 1997-2006 Mark Russinovich
Sysinternals - www.sysinternals.com

java.exe pid: 4632 638: C:\Java\jre5\lib\plugin.jar
java.exe pid: 6332 628: C:\Java\jre5\lib\plugin.jar

C:\Toolbox>

OR

Handle.exe -a > List.txt

Search the file which needs to be deleted.

And follow the above process.

Example

Tuesday, October 9, 2012

List Disk Space Status for Bulk Server ?


# Issue warning if % free disk space is less
$percentWarning = 15;
# Get server list
$servers = Get-Content "$Env:USERPROFILE\Desktop\SUBHAG\POWERSHELL\POWERSHELL\servername.txt";
$datetime = Get-Date -Format "yyyyMMddHHmmss";

# Add headers to log file
Add-Content "$Env:USERPROFILE\\Desktop\SUBHAG\POWERSHELL\POWERSHELL\server disks $datetime.txt" "server,deviceID,size,freespace,percentFree";

foreach($server in $servers)
{
# Get fixed drive info
$disks = Get-WmiObject -ComputerName $server -Class Win32_LogicalDisk -Filter "DriveType = 3";

foreach($disk in $disks)
{
$deviceID = $disk.DeviceID;
[float]$size = $disk.Size;
[float]$freespace = $disk.FreeSpace;

$percentFree = [Math]::Round(($freespace / $size) * 100, 2);
$sizeGB = [Math]::Round($size / 1073741824, 2);
$freeSpaceGB = [Math]::Round($freespace / 1073741824, 2);

$colour = "Green";
if($percentFree -lt $percentWarning)
{
$colour = "Red";
}
Write-Host -ForegroundColor $colour "$server $deviceID percentage free space = $percentFree";
Add-Content "$Env:USERPROFILE\\Desktop\SUBHAG\POWERSHELL\POWERSHELL\server disks $datetime.txt" "$server,$deviceID,$sizeGB,$freeSpaceGB,$percentFree";
}
}

Change Account Expiry for Bulk Users ?


----------------------------------------------------------------------------------------------------------
Create a file SAMID.txt and put all the account name in it and execute the command from the current directory

for /f %C in (SAMID.txt) do dsquery user -samid %C | dsmod user -acctexpires

Ex. Today 29-May-2012 and extension has to be done upto 30-JUNE-2012,
Then the no. of days will be 30+3=33

------------------------------------------------------------------------------------------------------------

How to Find a Email address of all the members of Security Group ?


dsquery group -name | dsget group -members | dsquery user -limit 0| dsget user -email

Tuesday, May 29, 2012

How to set AD User ID Account Expiry for Bulk Users

Create a file SAMID.txt and put all the account name in it and execute the command from the current directory.


for /f %C in (SAMID.txt) do dsquery user -samid %C dsmod user -acctexpires



Ex. Today 29-May-2012 and extension has to be done upto 30-JUNE-2012,

Then the no. of days will be 30+3=33

Thursday, November 10, 2011

TCP/IP missing in the network adapter.

Problem Solution:
The problem was due to N/W entries of registry corruption.
1. Click Start, click Run, type regedit, and then click OK.
2. Locate and then delete the following registry subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Network\Config
3. If your server is a domain controller, go to step 5. (This includes servers that are running Windows Small Business Server 2003.) If your server is not a domain controller, delete the following registry subkeys:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Adapters\ {GUID}
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{GUID}
4. Click Start, click Run, type sysdm.cpl, and then click OK.
5. In the Systems Properties dialog box, click the Hardware tab, and then click Device Manager.
6. In Device Manager, expand Network adapters, right-click the network adapter that you want, and then click Uninstall.
7. Restart the computer.
8. Reassign the IP address and Restart the System.
Reference:
http://support.microsoft.com/kb/937056
http://forums.techarena.in/windows-server-help/20016.htm

Wednesday, October 12, 2011

SCVMM PowerShell scripts simplify administrative tasks

If you think Microsoft Hyper-V PowerShell cmdlets are comprehensive, System Center Virtual Machine Manager (SCVMM) PowerShell scripts offer even greater functionality and options for administrative tasks. These scripts can make a huge difference in the day to day of Hyper-V admins.

SCVMM PowerShell scripts can run on several virtualization platforms, including Hyper-V (R1 and R2), Virtual Server 2005 and VMware. Unlike with Hyper-V PowerShell scripts, which perform tasks directly on hosts, SCVMM acts more like a proxy that can translate PowerShell commands into executables for various hosts.



More on PowerShell in Hyper-V environments
How to use PowerShell or VBScript scripting with Hyper-V

Optimizing Hyper-V cluster performance among multiple sites



Because SCVMM PowerShell scripts are compatible with a broad array of systems, its scripting guide is very thorough. Here are some basic cmdlets and scripts that I use frequently.

Get-VM. Both Hyper-V and SCVMM feature the Get-VM cmdlet. But entering Get-VM from the SCVMM command prompt retrieves much more information.

The Get-VM cmdlet returns the attributes of every VM that's managed by SCVMM, which is usually too much information to digest. Here's how to obtain information about a single virtual machine( VM):



If you're interested in the VM's name and memory information, enter the following SCVMM PowerShell command:

Get-VM | ft name, memory
Get-VM is a versatile cmdlet that retrieves an enormous amount of information, but you can granularly search for information by attaching attributes to it. Insert "ft" (Format-Table) or "fl" (Format-List), for example, to customize the format of the results.

Set-VM. The Set-VM cmdlet allows administrators to bypass time-intensive graphical user interface (GUI) wizards and change VM settings from the command line. Below are my favorite Set-VM commands:
To set a VM's memory utilization, enter


Set-VM < SERVERNAME> -memory 2048


Helpful SCVMM PowerShell definitions
Cmdlets: These are the building blocks for commands. Cmdlets perform an action and provide a Microsoft .NET framework object to the next command. All cmdlets follow a verb, noun format (e.g., Get-VM, Get-Help).

Commands: The execution of one or more cmdlets, along with defining parameters that implement specific functions. For more information on SCVMM PowerShell cmdlets and commands, in addition to their differences, visit Microsoft's Cmdlet Overview page



To adjust a VM's CPU count, run this SCVMM PowerShell script:

Set-VM < SERVERNAME> -cpucount 2
The following command designates which users can access a VM through the SCVMM Self-Service Portal. The Self-Service Portal is a stripped-down version of the SCVMM Administration Console, which can grant privileges to users.


Set-VM -owner "DOMAIN\GROUPNAME or USERNAME"
The basic Get-VM and Set-VM cmdlets can simplify many administrative tasks. As you become more familiar with PowerShell, you can create powerful SCVMM scripts that are brief and simple.

Who are you?
Frequently, you'll have bits of information without an identifier for a VM's name. These obscure messages are usually found in the event log. Here are simple SCVMM PowerShell scripts to help identify mysterious VMs.

This script determines a VM's name from its MAC address (e.g., 00:03:ff:07:e7:dc):


Get-VirtualNetworkAdapter -all | where {$_.ethernetaddress -eq "< Insert VM MAC Address>"}
To acquire a VM name from its VM ID (e.g., 1CA3996C-C089-4896-A806-B396BC88F0BB), run this script:


Get-VM | where{$_.VMid -eq ""} | ft name
Unmerged snapshots
Forgotten snapshots and checkpoints can occupy valuable disk space. Often these snapshots were created before an application upgrade but then abandoned. I frequently run, the following script to delete and merge these snapshots before they create management and performance problems.

Here's how to find VMs with snapshots:


Get-VM | where {$_.LastRestoredVMCheckpoint -like "* *"} | ft name, LastRestoredVMCheckpoint, hostname

OR

$ll=Get-VM | where {$_.LastRestoredVMCheckpoint -like "* *"} | ft name, LastRestoredVMCheckpoint, hostname
out-file report.txt -inputobject $ll -encoding ASCII -width 160




Which VMs have an ISO image mounted?
I perform this housecleaning command on a regular basis. At times, though, it can also interfere with Quick or Live Migrations.

To find any ISO image that's attached to VMs, enter the following command:


Get-VM | get-virtualdvddrive |Where {$_.iso -like "*.iso"} | ft name, iso --a
Tip: The "-a" (autosize) component at the end of the command adjusts the column widths to prevent the output from truncating.

This command ejects any ISO image attached to VMs:


Get-VM | get-virtualdvddrive |? {$_.iso -like "*.iso"} | set-virtualdvddrive --nomedia
Tip: You can substitute a"?" for "Where."

Here's how to remove specific ISO images from VMs. This command comes in handy when the VM integration components ISO image does not dismount after its installation.


Get-VM | get-virtualdvddrive |? {$_.iso -like "vmg*"} | set-virtualdvddrive --nomedia
Pesky, misconfigured network adapters
When I'm in a rush, I sometimes mistakenly create emulated virtual network adapters instead of the higher-performing synthetic network adapters. This SCVMM PowerShell script identifies virtual network adapter types:


Get-VirtualNetworkAdapter -all | where {$_.virtualnetworkadaptertype -eq "emulated" -and $_.ethernetaddress -like "00:15*"} |ft name,VirtualNetworkAdapterType,ethernetaddress
SCVMM hardware profiles help prevent these administrative mistakes by enabling IT personnel to standardize the VM components throughout a virtual environment. You can apply these hardware profiles during the VM provisioning process with a PowerShell script or GUI wizard.

Clustered VMs
SCVMM PowerShell scripts can also perform any cluster function. This command migrates a VM from one cluster node to another:


Move-VM -VM -VMHost
To set the processor compatibility mode from PowerShell (the guest must be off), enter the following text:


Set-VM -LimitCPUForMigration $True
The beauty of SCVMM is that it's built on PowerShell. As a result, these SCVMM PowerShell scripts provide administrators with in-depth control over multiple virtualization platforms. Learning the PowerShell scripting language can be arduous, but you'll reduce administrative time as you become more familiar with SCVMM scripts.

Reference: http://searchservervirtualization.techtarget.com/tip/SCVMM-PowerShell-scripts-simplify-administrative-tasks