TechNet Gallery – Ressourcen für IT-Experten

Laden Sie Ressourcen und Anwendungen für Windows 7, Windows Server 2008 R2, Windows Server 2008, SharePoint, System Center, Office und andere Produkte herunter. Es stehen Ressourcen in VB Script, PowerShell, SQL, JavaScript oder anderen Skriptsprachen zur Verfügung. Neue Ressourcen werden regelmäßig hinzugefügt. Besuchen Sie uns daher oft, und erfahren Sie, was es Neues gibt.

Jeder Beitrag wird für Sie von dessen Besitzer, nicht von Microsoft, unter einem Lizenzvertrag lizenziert. Microsoft übernimmt keine Garantie für den Beitrag und erhebt auch keinen Anspruch auf die Erteilung von Rechten darauf.
Sortieren nach: rss
29 Skripterstellungstechniken Ergebnisse für Shashi2202 [Zurücksetzen]
Shashi2202
The following script will remove any Citrix clients found but leave the latest Citrix Online Plug-in v12.0.  The version numbers can be modified below for later releases of the Citrix online plug-in. This script will be useful when different versions of Citrix Clients are install
(3)
Aktualisiert 07.10.2011
Veröffentlicht 07.10.2011
1.351 Downloads
Shashi2202
Create a text file containing IP Address(c:\IP_Address.txt)PS C:\Powershell> Get-Content C:\IP_Address.txt | ForEach-Object {([system.net.dns]::GetHostByAddress($_)).hostname >> c:\hostname.txt}The hostnames for the IP Address will be written on to C:\hostname.txtYou can also re
(2)
Aktualisiert 09.01.2013
Veröffentlicht 09.01.2013
Shashi2202
This PowerShell Script reads the computer names from C:\Computers.txt, pings the computers and redirects the output to a text filePS C:\Powershell> .\pingws.ps1 | Out-File -FilePath c:\results.txt -appendThe output of the ping results are stored in C:\results.txtThe script gets t
(0)
Aktualisiert 08.01.2013
Veröffentlicht 08.01.2013
Shashi2202
This script will get the file version of a file from remote computers, The filename is specified in filename. The computernames are imported from C:\Computer.csv. The Script checks the condition whether the file exist or not. If the file does not exist it does not write anything
(0)
Aktualisiert 24.09.2013
Veröffentlicht 24.09.2013
Shashi2202
This Script list the applications installed on a remote computer using PowerShell. This script reads the computernames from C:\Computer.csv. Script uses "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall". The 64-bit applications goes under the hive HKEY_LOCAL_MACHINE\SO
(0)
Aktualisiert 20.09.2013
Veröffentlicht 20.09.2013
Shashi2202
This script will execute a batch file silently. Create a Shell object. Compspec is to launch Command Prompt /C is to carry the command and then terminate. 0 in the Run Command is to execuate the command silenly: Below is the code:Set WshShell = WScript.CreateObject("WScript.Sh
(4)
Aktualisiert 24.05.2013
Veröffentlicht 07.10.2011
427 Downloads
Shashi2202
This script checks for a value "test" if it exist in HKEY_LOCAL_MACHINE\Software\Testkey. If the value is found, it deletes the Value named "test". If it does not exist it display "The value does not exist" on screen. The code is given below$regkeypath= "hklm:\Software\Testkey"$v
(0)
Aktualisiert 09.01.2013
Veröffentlicht 09.01.2013
Shashi2202
 This script will create a sub folder called userinput in C:\Data and four other folders called Test1, Test2, Test3 and Test4 in C:\Data\userinput. This script avoids use of SubFolders functions. The sub folders are stored in an Array called aFolders. This script also checks if t
(1)
Aktualisiert 24.10.2011
Veröffentlicht 24.10.2011
212 Downloads
Shashi2202
This script will reboot remote computers after displaying a Warning message before shutdown. The computer names are stored in c:\computers.txt. The warning message will be displayed for 5 minutes before shutdown. The script is given below:Set WSHShell = WScript.CreateObject("WScr
(0)
Aktualisiert 04.04.2012
Veröffentlicht 04.04.2012
Shashi2202
In the above script replace DomainName with your domainname, <userID> with the username present in the domain, <servername> with the remote computer name and <foldername> with the folder on the remote computer whose acl, you want to change. The explanation of the script is given
(0)
Aktualisiert 16.01.2013
Veröffentlicht 16.01.2013
Shashi2202
 This script will get the current directory from where the script is executed. This will be helpful when we want to execute something from the script directory. The sCurPath will display the current directory from where the script is ececuted. The Absolute Path Name will hold the
(1)
Aktualisiert 24.10.2011
Veröffentlicht 24.10.2011
209 Downloads
Shashi2202
 The script reads the hostnames from C:\hostname.txt.It then finds the version of the file on the remote machine and writes the log on c:\temp\FileVer.txtSet colFiles = objWMIService.ExecQuery _    ("Select * from CIM_Datafile Where Name = 'C:\\Program Files\\Internet Explorer\\i
(1)
Aktualisiert 05.10.2011
Veröffentlicht 05.10.2011
168 Downloads
Shashi2202
' This script will deny 'Everyone' permission to C:\windows\inf\usbstor.inf, C:\windows\inf\usbstor.pnf and c:\windows\system32\drivers\usbstor.sysDim oShell, FoldPerm, Calcds, oFSO, FoldPerm1, FoldPerm2Set oFSO = CreateObject("Scripting.FileSystemObject")Set oShell = CreateObjec
(0)
Aktualisiert 02.03.2012
Veröffentlicht 02.03.2012
Shashi2202
This script will set folder permission on a folder (c:\1) and its sub folder. This script first checks whether the folder exist or not. If the folder does not exist, it displays, the folder does not exist. If the folder exist, it grants full permission to the Domain User Line 1-3
(0)
Aktualisiert 23.09.2013
Veröffentlicht 23.09.2013
Shashi2202
This script will automatically logoff if a Screen Saver is triggered.  The script will check every two seconds if a screen saver is running. This could be replacement for Winexit.scr in Windows 7.This should be put at startup and running all the time.Below is the code:===========
(0)
Aktualisiert 04.05.2012
Veröffentlicht 04.05.2012
1 - 15 von 29 Beiträgen