29.10.09

What's New in Offline Files for Windows Vista

Based on customer feedback, the Offline Files feature has been redesigned for Windows Vista®, and it utilizes many of the improvement available in this version of the Windows operating system.
This document describes some of the functionalities of and changes to Offline Files in Windows Vista. It is intended for general users of Offline Files and system administrators.


What does Offline Files do?

26.10.09

Vbscript to Map Drive Based of availability of Drive Letter

Vbscript to Map Drive Based of availability of Drive Letter
This script will maps from Drive Letter ‘K’ up to Y


Option Explicit
Dim strDriveLetter, strRemotePath
Dim objNetwork, objShell
Dim CheckDrive, DriveExists, intDrive

Dim strAlpha, strExtract, intAlpha, intCount

25.10.09

Script to add AD OU Users to Security Groups

You need the Distinguished Names of the OU and the group.
Save the below script as ScriptName.vbs
'Following script will add Security Group “TestGroup” to the OU Named “MyOU”

24.10.09

Seven things to know about Windows 7

Will my aging computer run Windows 7?Maybe. If your PC can run the much-maligned Windows Vista, it can probably run Windows 7. Check your computer's specs: To install Windows 7, you'll need at least a 1 gigahertz or faster 32-bit (x86) processor, plus at least 2 GB of RAM and at least 16 GB of available hard disk space.

VBscript to find local Administrators and output in a Tab delimited File

'Created By Ram B C www.askmewindows.in
'Created Date : 10/24/2009
'This script is find the local Administrators and output in a Tab delimited File
'============================

'FAQ : Create two Files Listofcomputers.txt and AdminList.txt in C: Drive ( Provided you have Write Permission in C:)
' Give the computer names from which you need to find the Local Admin group
' Result will be present in the file C:\AdminList.txt
'==========================================