Search found 8 matches
- 26 Dec 2012 07:45
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
Re: copy mac address to clicpboard
All fixed. I got help and now i have combined the scripts to capture the MAC address and edit the XML. works very nicely.
- 25 Dec 2012 08:42
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
Re: copy mac address to clicpboard
Hi Foxidrive, I have changed the way to do things. do you know how i can combine these 2x scripts to capture the MAC address and place it in the XML file. XML VB Script Set xmlDoc = CreateObject("Microsoft.XMLDOM") xmlDoc.load "settings.xml" 'Locate the desired node 'Note the use...
- 24 Dec 2012 08:41
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
Re: copy mac address to clicpboard
Hi Foxidrive.
thank you for all your help, think i have enough to go on with. Thanks a million for taken the time to reply.
hope you have a great merry Christmas.
Cheers
A
thank you for all your help, think i have enough to go on with. Thanks a million for taken the time to reply.
hope you have a great merry Christmas.
Cheers
A
- 24 Dec 2012 07:53
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
Re: copy mac address to clicpboard
Hi, from what understood before, you cant edit xml files using windows .bat code. hence why I thought it would be better to use a VBscript, guess am just looking for the quickest way to set this up. thanks for the link, but its way to confusing to make any sense. I will keep trying with figuring out...
- 24 Dec 2012 07:12
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
Re: copy mac address to clicpboard
last question if anyone knows. i am trying to get this VBScript to paste the data from the clip board to replace "textdata" anyone got any pointers Set xmlDoc = CreateObject("Microsoft.XMLDOM") xmlDoc.load "settings.xml" 'Locate the desired node 'Note the use of XPATH i...
- 24 Dec 2012 06:46
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
Re: copy mac address to clicpboard
Wow. thank you all very much for the replies. thank you Mr Fox, very helpful. thanks again everyone for your help. am just trying to automate a few things on AWS while keeping it simple for my challenging brain. 

- 23 Dec 2012 08:17
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
Re: copy mac address to clicpboard
Thank you so very mcuh. you have made my day.. happy christmas. 

- 23 Dec 2012 07:26
- Forum: DOS Batch Forum
- Topic: copy mac address to clicpboard
- Replies: 16
- Views: 11597
copy mac address to clicpboard
Guys, I found this script on the web. @ECHO OFF FOR /f "tokens=12 delims= " %%a IN ('IPCONFIG /all^|FINDSTR "Physical Address"') DO ( SET PA=%%a IF NOT "%PA%"=="." GOTO Done ) :Done ECHO D%PA:-=%|clip CLS ECHO The Physical Address has been copied to the clipbo...