Benutzer-Werkzeuge

Webseiten-Werkzeuge


snippets:start

Snippets

DOS/CMD

PuTTY Tools

More Infos for DOS

AutoHotkey

HTTP/CSS/Javascript

Windows

explore_Quick-Launch-Directory.bat
  @%windir%\explorer.exe /n, /e, "%appdata%\Microsoft\Internet Explorer\Quick Launch\"
create_a_new_directory_at_your_Quick-Launch.bat
  @md "%appdata%\Microsoft\Internet Explorer\Quick Launch\new_DIRECTORY"
read_hardware_profile_number.bat
@echo off
FOR /F " usebackq  tokens=2,* delims=x" %%A IN (`REG QUERY HKLM\SYSTEM\CurrentControlSet\Control\IDConfigDB /v CurrentConfig`) DO set profilenumber=%%A
echo active profile number is: %profilenumber%
pause

globale Einstellungen Proxy

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Connections\WinHttpSettings

Deleting the WinHttpSettings value removes all proxy configurations.

Netsh Commands for Windows Hypertext Transfer Protocol (WINHTTP) http://technet.microsoft.com/en-us/library/cc731131%28WS.10%29.aspx

http://msdn.microsoft.com/en-us/library/aa384069%28v=vs.85%29.aspx

ProxyCfg.exe has been deprecated. It is replaced by the Netsh.exe winhttp commands. (only newer than XP)

C:\> C:\WINDOWS\system32\dllcache\proxycfg.exe /?

Microsoft (R) WinHTTP-Standard-Proxykonfigurationstool
Copyright (c) Microsoft Corporation. Alle Rechte vorbehalten.
Syntax:
    proxycfg -?  : Hilfeinformationen anzeigen
    proxycfg     : Aktuelle WinHTTP-Proxyeinstellungen anzeigen
    proxycfg [-d] [-p <Servername> [<Umgehungsliste>]]
        -d : Direkten Zugriff einstellen
        -p : Proxyserver und optionale Umgehungsliste festlegen

    proxycfg -u  : Proxyeinstellungen von aktuellen manuellen Einstellungen des
                   Benutzers in Microsoft Internet Explorer (in HKCU)
                   importieren

Windows 7

Excel

Explorer aus der Komandozeile starten

%windir%\explorer.exe /n, /e, .

Dieser Befehl startet den Explorer aus dem aktuellen Verzeichnis. Mann kann auch eine Verknüpfung anlegen um den Explorer direkt zu starten.

Wenn mann anstatt den . den Pfad eingibt öffnet der Explorer in diesem Verzeichnis z.B. „%windir%\explorer.exe /n, /e,C:\Temp“ öffnet den Explorer im Verzeichnis C:\Temp

Ich empfehle auch ein Batchfile wie folgt anzulegen:
Start - Ausführen oder [Windows]+[R] (Adminrechte notwendig!)
man kann dann aus jedem verzeichnis mit dem Komando: ex den Explorer im aktuellen verzeichnis starten.

cmd.exe /C echo @%windir%\e
                    
                                    
snippets/start.txt · Zuletzt geändert: 2015/11/03 00:34 von admin