Thankk youuu
That works:)
Search found 4 matches
- 14 Nov 2010 14:11
- Forum: DOS Batch Forum
- Topic: Change Homedir folder
- Replies: 2
- Views: 4701
- 10 Nov 2010 09:54
- Forum: DOS Batch Forum
- Topic: Change Homedir folder
- Replies: 2
- Views: 4701
Change Homedir folder
hello, I want to change the path of the homedir folder for a lot of users. I have a txt file with the usernames of the users. I know the command to change the homedirs folder: for /f "delims=" %%a in ('c:\users.txt') do (dsmod user "cn=full name,ou=hc gebruikers,ou=hc,DC=hc,dc=tmg,dc=...
- 26 Oct 2010 07:11
- Forum: DOS Batch Forum
- Topic: Ipconfig Description
- Replies: 2
- Views: 8678
Re: Ipconfig Description
Yesss:D Thank you i used the WMIC solution, and it worked like a charm:)
- 25 Oct 2010 07:02
- Forum: DOS Batch Forum
- Topic: Ipconfig Description
- Replies: 2
- Views: 8678
Ipconfig Description
Hello, I'm writing a script to check what ip number a computer has. This is what i have. @echo off ipconfig | find /i "10.160" | find /i "ip" >nul if %errorlevel%==0 goto install This script is working, the only thing is i want to check if the ip numer is from a vpn connection. N...