rundll32 dsquery,OpenQueryWindow „
Kategorie: Uncategorized (Seite 4 von 7)
For a Linux based Thin Client press „Esc“ several times during boot stage, this should be done just after pressing the power switch. You will then enter a boot menu where you select “Reset to Factory Default“ and follow the instructions.
dd if=/dev/zero of=/dev/sda bs=1M
STRG+ALT+UNTBR, wechsel zwischen Vollbild und der Anzeige in einem Fenster.
transform everything in lowercase :
:%s/.*/\L&/
and in uppercase :
:%s/.*/\U&/
Set objWMIService = GetObject(„winmgmts:“ _
& „{impersonationLevel=impersonate}!\\“ _
& „.“ & „\root\cimv2“)
Set colProcesses = objWMIService.ExecQuery( _
„Select * from Win32_Process “ _
& „Where Name = ‚WScript.exe'“, , 48)
Dim strReport
For Each objProcess in colProcesses
‚ skip current script, and display the rest
If InStr (objProcess.CommandLine, WScript.ScriptName) = 0 Then
strReport = strReport & vbNewLine & vbNewLine & _
„ProcessId: “ & objProcess.ProcessId & vbNewLine & _
„ParentProcessId: “ & objProcess.ParentProcessId & _
vbNewLine & „CommandLine: “ & objProcess.CommandLine & _
vbNewLine & „Caption: “ & objProcess.Caption & _
vbNewLine & „ExecutablePath: “ & objProcess.ExecutablePath
End If
Next
WScript.Echo strReport
Set-ExecutionPolicy Unrestricted
http://center.vodafone.de/vfcenter/verbrauch.html
Import-Module ServerManager
Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy –Restart
Set-Service NetTcpPortSharing -StartupType Automatic
$servers = get-content „path_to_the_file“
foreach ($server in $servers) {
$addresses = [System.Net.Dns]::GetHostAddresses($server)
foreach($a in $addresses) {
„{0},{1}“ -f $server, $a.IPAddressToString
}
}