Content Type
Profiles
Forums
Events
Everything posted by Yzöwl
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
On behalf of all our membership please allow me to welcome you to the MSFN Forums. I hope you enjoy being part of something special!
-
Oh well, lets ignore the Moderators advice and for no reason whatsoever decide to abuse them! Topic Closed
-
Batch DIR output formatting
Yzöwl replied to twig123's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
The example I gave was intended to do just that! Is there something I missed? did you try it as is? -
Batch DIR output formatting
Yzöwl replied to twig123's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Well I've no idea about this tool or its commandline options etc. therefore I'll assume that your above command is correct and take a stab at this! @Echo off&Setlocal Set p_=E:\Twig06\~Source~\Addins\2008-26-05\~files~ Set #=%p_%\WMP11\Patches Set "_=%temp%\_$out.log" Type Nul>%_% For /f "delims=" %%_ In ('Dir/b/a-d "%#%"') Do Echo:|Set/p "=%%_|">>%_% For /f "usebackq delims=" %%_ In ("%_%") Do (Set $="%%_") Del %_%&Set $="%$:~1,-2%" For /f "delims=" %%_ In (%$%) Do ( Start "" /wait WMP11Slipstreamer.exe /hotfix:"%#%|%%_") -
Batch DIR output formatting
Yzöwl replied to twig123's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
I cannot immediately see a reason to have this data as a variable therefore I'll assume you'd wish it in a file. In the code below, change: %userprofile%\desktop to reflect the directory you wish listing %temp%\_$out.log to reflect your intended output file @Echo off&Setlocal Set "#=%userprofile%\desktop" Set "_=%temp%\_$out.log" Type Nul>"%_%" For /f "delims=" %%_ In ('Dir/b/a-d "%#%"') Do Echo:|Set/p "=%%_|">>"%_%" -
Batch File copy and rename with date
Yzöwl replied to hem852's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
That line is over 1500 characters long before the first variable of unknown character length, (%dts%), alone. There is a limit of 1024 characters hence one of the problems! -
User Menu Select and Run
Yzöwl replied to JayDogg's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
First thing we need to know is what Operating System is this for? You are using a bat suffix so I'd assume your using Win9x/ME but as you're new to all this that's probably not the case. Also, if you put the individual files into a compressed archive and post them too it would certainly help fix all of the problems which may be caused by those too! -
batch file that check version in registry
Yzöwl replied to ceez's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
You just use the Tab key, I needed to explain in that way because the forum software sometimes converts the tab I input into a series of spaces. When you run the command manually in a console window, you'll need to replace all instances of %%# with %#. -
Your topic title suggests one thing and your post another. Please try to make your Topic Titles more specific, this is the Unattended Windows 2000/XP/2003 area, so short of letting us know you're not istalling 2000 or 2003 your topic title tells us nothing. If you want a step by step guide, then read the 'Unattended Guide' linked to at the header of each page here. Other than that it's just a case of plenty of reading, trial, error and hopefully success. If you want to know about Virtual Machines, you put your newly created CD-ROM in, (or better yet mount the ISO image, it'll save you potentially wasted media), then the Virtual Machine boots from it and installs in the same way as your normal PC.
-
Firstly the opening post has been fixed in order to improve readability and Forum navigation, please learn to use appropriate tags where necessary. There is nothing in that reg fie which can or will cause you the problems you are experiencing. (however: "Favourites" ="C:\\Documents\\Favourites") From your presets attachment it is evident that you've used nLite, so your problem will now be transferred to the nLite Forum in order to attempt to attract more suitable help.
-
Automatic editing of a batch file?
Yzöwl replied to Archigos's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
If you're wanting a dynamic 'copy without pause' whatever performs that task needs to be able to read and write a file containing characters which would be problematic to reproduce due to them having special meanings. What would be needed therefore is one or more example build.bat files in order to choose an appropriate method, tool or language for performing the task. -
Automatic editing of a batch file?
Yzöwl replied to Archigos's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
We're going to need a lot more information, the layout, (and probably content due to poison characters), of the build.bat files for a start! -
changing a ready unattended disk
Yzöwl replied to magarik's topic in Unattended Windows 2000/XP/2003
What's clear is that there is a very strong chance that this DVD version contains Software which hasn't been paid for but should have been. I am going to close this thread before something is said which could jeopardise membership on this Forum! -
This is suprisingly not as simple a task to do as you'd perhaps think! Try this quick attempt and see how it goes: OEAccBak.cmd @Echo off&Setlocal Set "_=HKCU\Software\Microsoft\Internet Account Manager\Accounts"&Set "$=0" >OE_Acc.reg (Echo:REGEDIT4&Echo:) For /f "delims=" %%# In ('Reg query "%_%"^|Findstr/i \\accounts\\0000') Do ( Call :S_ "%%#") For /l %%_ In (1,1,%$%) Do Find /v "REGEDIT4"<$%%_#.log>>OE_Acc.reg Del /q $*#.log Goto :Eof :S_ Set/a "$+=1" Regedit/a $%$%#.log %1
-
Remember geek, that this is the Unattended Forum