grafische net use Programm
Hallo,
kennt jemand ein grafische net use Programm ?
Da ich mich häufig zu verschiedenen Netzlaufwerken verbinden muss.
Hab schon ne weile gesucht, aber nichts brauchbares gefunen .
Mfg
kennt jemand ein grafische net use Programm ?
Da ich mich häufig zu verschiedenen Netzlaufwerken verbinden muss.
Hab schon ne weile gesucht, aber nichts brauchbares gefunen .
Mfg
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 109613
Url: https://administrator.de/forum/grafische-net-use-programm-109613.html
Ausgedruckt am: 17.02.2025 um 00:02 Uhr
7 Kommentare
Neuester Kommentar
Hallo MPFG,
Network Drive Manager wäre wohl dein Programm der Wahl![face-wink face-wink](/images/icons/fa/light/face-laugh-wink.svg)
Hier eine kurze Info:
Wer gelegentlich Netzlaufwerke einrichten muss, der kann das auch ganz einfach mit dem portablen Network Drive Mapper bewerkstelligen. Sehr einfach gehalten – dafür funktional.
http://stadt-bremerhaven.de/2008/12/06/network-drive-manager-netzlaufwe ...
Die Website:
http://www.brooksyounce.com/soft/mapper.htm
Download Link (Freeware)
http://download.brooksyounce.com/downloads/bysoft/Network_Drive_Mapper. ...
Network Drive Manager wäre wohl dein Programm der Wahl
Hier eine kurze Info:
Wer gelegentlich Netzlaufwerke einrichten muss, der kann das auch ganz einfach mit dem portablen Network Drive Mapper bewerkstelligen. Sehr einfach gehalten – dafür funktional.
http://stadt-bremerhaven.de/2008/12/06/network-drive-manager-netzlaufwe ...
Die Website:
http://www.brooksyounce.com/soft/mapper.htm
Download Link (Freeware)
http://download.brooksyounce.com/downloads/bysoft/Network_Drive_Mapper. ...
oder schreib dir nen shellscript mit nem auswahlmenü am anfang... geht aber halt nur wenn du oft in die selben netwerke / freigaben musst
@echo OFF
:0
CLS
ECHO ########################################
ECHO ## Skript zum setzten von IP-Adressen ##
ECHO ########### by SW #########
ECHO ############## Version 0.4 #############
ECHO ########################################
ECHO ----------------------------------------
ECHO Bitte waehlen
ECHO 1: Lan DHCP
ECHO 2: Lan ka
ECHO 3: Lan IP 0.234 GW 0.1
ECHO 4: Lan IP 1.234 GW 1.1
ECHO 5: WLan DHCP
ECHO 6: WLan IP 0.233 GW 0.1
ECHO 7: WLan IP 1.233 GW 1.1
ECHO 8: WLan Bridge
ECHO 9: Abbrechen
SET choice=
SET /p choice=
IF '%choice%' == '1' GOTO 1
IF '%choice%' == '2' GOTO 2
IF '%choice%' == '3' GOTO 3
IF '%choice%' == '4' GOTO 4
IF '%choice%' == '5' GOTO 5
IF '%choice%' == '6' GOTO 6
IF '%choice%' == '7' GOTO 7
IF '%choice%' == '8' GOTO 8
IF '%choice%' == '9' GOTO 9
ECHO Falsche Eingabe. Bitte erneut versuchen
GOTO :0
:1
ECHO Setzt LAN-Einstellungen auf DHCP
netsh interface ip set address "LAN-Verbindung" dhcp
GOTO 9
:2
ECHO Setzt LAN-Einstellungen auf xx
netsh interface ip set address "LAN-Verbindung" static 10.0.0.59 255.0.0.0 192.168.0.1 1
netsh interface ip set dns name="LAN-Verbindung" static 10.17.5.2
GOTO 9
:3
ECHO Setzt LAN-Einstellungen auf IP 192.168.0.234 / GW 192.168.0.1
netsh interface ip set address "LAN-Verbindung" static 192.168.0.234 255.255.255.0 192.168.0.1 1
netsh interface ip set dns name="LAN-Verbindung" static 192.168.0.1
GOTO 9
:4
ECHO Setzt LAN-Einstellungen auf IP 192.168.1.234 / GW 192.168.1.1
netsh interface ip set address "LAN-Verbindung" static 192.168.1.234 255.255.255.0 192.168.1.1 1
netsh interface ip set dns name="LAN-Verbindung" static 192.168.1.1
GOTO 9
:5
ECHO Setzte WLAN-Einstellungen auf DHCP
netsh interface ip set address "Drahtlose Netzwerkverbindung 2" dhcp
GOTO 9
:6
ECHO Setzte WLAN-Einstellungen auf IP 192.168.0.233 / GW 192.168.0.1
netsh interface ip set address "Drahtlose Netzwerkverbindung" static 192.168.0.233 255.255.255.0 192.168.0.1 1
netsh interface ip set dns name="Drahtlose Netzwerkverbindung" static 192.168.0.1
GOTO 9
:7
ECHO Setzte WLAN-Einstellungen auf IP 192.168.1.233 / GW 192.168.1.1
netsh interface ip set address "Drahtlose Netzwerkverbindung 2" static 192.168.1.233 255.255.255.0 192.168.1.1 1
netsh interface ip set dns name="Drahtlose Netzwerkverbindung 2" static 192.168.1.1
GOTO 9
:8
ECHO Setzte WLAN-Einstellungen auf IP 192.168.1.233 / GW 192.168.1.3
netsh interface ip set address "Drahtlose Netzwerkverbindung" static 192.168.1.233 255.255.255.0 192.168.1.3 1
netsh interface ip set dns name="Drahtlose Netzwerkverbindung" static 192.168.1.3
GOTO 9
:9
ECHO Netzwerkkonfiguration beendet!
ECHO Aktuelle Netzwerkeinstellungen:
ECHO Vorgang abgeschlossen
@echo OFF
:0
CLS
ECHO ########################################
ECHO ## Skript zum setzten von IP-Adressen ##
ECHO ########### by SW #########
ECHO ############## Version 0.4 #############
ECHO ########################################
ECHO ----------------------------------------
ECHO Bitte waehlen
ECHO 1: Lan DHCP
ECHO 2: Lan ka
ECHO 3: Lan IP 0.234 GW 0.1
ECHO 4: Lan IP 1.234 GW 1.1
ECHO 5: WLan DHCP
ECHO 6: WLan IP 0.233 GW 0.1
ECHO 7: WLan IP 1.233 GW 1.1
ECHO 8: WLan Bridge
ECHO 9: Abbrechen
SET choice=
SET /p choice=
IF '%choice%' == '1' GOTO 1
IF '%choice%' == '2' GOTO 2
IF '%choice%' == '3' GOTO 3
IF '%choice%' == '4' GOTO 4
IF '%choice%' == '5' GOTO 5
IF '%choice%' == '6' GOTO 6
IF '%choice%' == '7' GOTO 7
IF '%choice%' == '8' GOTO 8
IF '%choice%' == '9' GOTO 9
ECHO Falsche Eingabe. Bitte erneut versuchen
GOTO :0
:1
ECHO Setzt LAN-Einstellungen auf DHCP
netsh interface ip set address "LAN-Verbindung" dhcp
GOTO 9
:2
ECHO Setzt LAN-Einstellungen auf xx
netsh interface ip set address "LAN-Verbindung" static 10.0.0.59 255.0.0.0 192.168.0.1 1
netsh interface ip set dns name="LAN-Verbindung" static 10.17.5.2
GOTO 9
:3
ECHO Setzt LAN-Einstellungen auf IP 192.168.0.234 / GW 192.168.0.1
netsh interface ip set address "LAN-Verbindung" static 192.168.0.234 255.255.255.0 192.168.0.1 1
netsh interface ip set dns name="LAN-Verbindung" static 192.168.0.1
GOTO 9
:4
ECHO Setzt LAN-Einstellungen auf IP 192.168.1.234 / GW 192.168.1.1
netsh interface ip set address "LAN-Verbindung" static 192.168.1.234 255.255.255.0 192.168.1.1 1
netsh interface ip set dns name="LAN-Verbindung" static 192.168.1.1
GOTO 9
:5
ECHO Setzte WLAN-Einstellungen auf DHCP
netsh interface ip set address "Drahtlose Netzwerkverbindung 2" dhcp
GOTO 9
:6
ECHO Setzte WLAN-Einstellungen auf IP 192.168.0.233 / GW 192.168.0.1
netsh interface ip set address "Drahtlose Netzwerkverbindung" static 192.168.0.233 255.255.255.0 192.168.0.1 1
netsh interface ip set dns name="Drahtlose Netzwerkverbindung" static 192.168.0.1
GOTO 9
:7
ECHO Setzte WLAN-Einstellungen auf IP 192.168.1.233 / GW 192.168.1.1
netsh interface ip set address "Drahtlose Netzwerkverbindung 2" static 192.168.1.233 255.255.255.0 192.168.1.1 1
netsh interface ip set dns name="Drahtlose Netzwerkverbindung 2" static 192.168.1.1
GOTO 9
:8
ECHO Setzte WLAN-Einstellungen auf IP 192.168.1.233 / GW 192.168.1.3
netsh interface ip set address "Drahtlose Netzwerkverbindung" static 192.168.1.233 255.255.255.0 192.168.1.3 1
netsh interface ip set dns name="Drahtlose Netzwerkverbindung" static 192.168.1.3
GOTO 9
:9
ECHO Netzwerkkonfiguration beendet!
ECHO Aktuelle Netzwerkeinstellungen:
ECHO Vorgang abgeschlossen