Content Type
Profiles
Forums
Events
Everything posted by gunsmokingman
-
Unattend installation hanging
gunsmokingman replied to Rik99's topic in Unattended Windows 2000/XP/2003
Read This It Will Help The Thread -
Flashing computers in system tray
gunsmokingman replied to Yzöwl's topic in Unattended Windows 2000/XP/2003
Nice Piece Of Code Thank You -
Try This Then Adjust To Your Needs You Are Missing The Theme File It Calls CustomDefaultThemeFile=%systemdrive%\WINDOWS\Resources\Themes\McBlue2.theme
-
Try This Then For Cmd VBS Script Move VBS Script Copy Blue Change To Match Your Computer LocationGreen Is Just Asking To Keep The Test Folder Orange Is The Script Checking To See If The Folder Is There Grey Is The Copy Part Of The Script Red Is The Location Or Files As A Varible This Color Is The Folder Or File To Remove. Purple Is For Script Notes Notes If You Want To Use One Varible For The EndSpot To Delete The Folder Then it Must Look Like This How It Is In The Script Dim EndSpot : EndSpot =("D:\TestCopy1FileType\") Re Edit Dim EndSpot : EndSpot =("D:\TestCopy1FileType") In The Script The Line Will Look Like this EndSpot & "\" Also For Every If There Must Be A End If Test The VBS Script
-
Having problems customizing the task bar
gunsmokingman replied to tiwas's topic in Customizing Windows
The Taskbar is control by the ms style that windows uses. -
Here A one Line Vbs Code That Does The Same save as logoff.vbs
-
Help with slipstreaming SP2.
gunsmokingman replied to David56's topic in Unattended Windows 2000/XP/2003
Delete this file before intergrating the service pack \XPCD\i386\svcpack.inf This A Cmd script That check To See If The File Is There, then Delets It If It Is The Location. -
I do not Know If This will Help But This VBS Script might be better For You To Use. I made this script to test for the word cat in a text file called Cat.txt , If the word was there it will add a confirm line in the text file. I tested this in one folder with the file in there, I have included a if not so you dont get the standard error a vbs script makes when it cant find something. I am not a scripter this is from a template on the MSDN site So If There Are Some People Who Have more Knowledge Of VBS Please Help Him Modify It To Suit His Needs. My Brief Break Down Red Is The File It Searches For Blue Are The Objects needed For The script These are like the things cmd.exe uses for variuos task. Green Is Now The Functions Of The Object made Orange Is Set objFile to A New Name For The Script To Use It. Purple If InStr(strWordList, strSearchWord) = 0 Then These Are The Condition That must Be True For The Script To Work Grey Is The Error If The File Is Missing Hope This Helps
-
Conversion from batch file to VBS script
gunsmokingman replied to Incroyable HULK's topic in Unattended Windows 2000/XP/2003
I Believe This Set The Source , Here Is I Hope A Correct Break Down It say A Drive With This File WIN51 = strOEM Then He Add Another Varible OEM\ To it For The Path -
Here A Example Cmd It Set Up To Look For CMD And VBS Files From These Location C:\;D:\;E:\;F:\;G:\;I:\, This Took A While To Complete It Search
-
renaming a file using VBS?
gunsmokingman replied to a topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Thanks That Was Usefull To Me -
How to install WMP10 and .net 1.1 in SVCPACK.inf?
gunsmokingman replied to gzm55's topic in Unattended Windows 2000/XP/2003
I Have It There Because During The Install I Wanted A Spot That Will Alway Exists. Plus It Always Cleans Up That Way. I Find Sfx Do Not Clean Up Very Well -
How to install WMP10 and .net 1.1 in SVCPACK.inf?
gunsmokingman replied to gzm55's topic in Unattended Windows 2000/XP/2003
If You Want To Add The Media Player By SvcPack.inf Then Read This Thread The Thread -
Re-use existing profile folders?
gunsmokingman replied to Bebbetufs's topic in Unattended Windows 2000/XP/2003
Windows Has A tool For Transfering User Profiles 1\ Place A XPCD In Your CD Drive Then At The Welcome To Window Press Perform Additional Tasks 2\Use The Transfer And File Setting I Have Never Used This So I Do Not Know How To Use It. -
Those Look Like Nice Tools, Thanks I ll try them later Here a cmd that will log off with out the logoff dialog box This cmd works fater than the regular way to log off.
-
Choose type of partition and window's path
gunsmokingman replied to alekc's topic in Unattended Windows 2000/XP/2003
You Will Need To Make A Second Partition To Have A Proper Multi Boot Computer. This Means You Will Have To Use A 3rd Party Software To Make The New Partiton. The Reason For This Is Because Windows Will Not Allow Manipulation Of The Boot Drive. You Can Create The Partition In Set Up but that will Destroy All Your Files On The Hard drive. -
MenuShowDelay to affect all users
gunsmokingman replied to edmoncu's topic in Unattended Windows 2000/XP/2003
Do You Have This At The Top Of The Reg File Windows Registry Editor Version 5.00 -
Here This Might Help This Color Is For Notes Folders Needed For WMP10 SvcPack Method YOUR-HARDRIVE:\XPCD\TMP10 Note: This Folder Is Made If You Have Intergrated Any Updates If You Have Not Added Any Updates Then Make This Folder YOUR-HARDRIVE:\XPCD\i386\SvcPack 1:\ Download or Move Wmp10 setup To YOUR-HARDRIVE:\XPCD\ 2:\ Extract WMP10 In YOUR-HARDRIVE:\XPCD\TMP10 Note : Make Sure The Wmp10 You Downloaded Is Not In YOUR-HARDRIVE:\XPCD\TMP10 Or It Will Add More To The Size Of Of Sfx Itself. 3:\ Make This Script Cmd And Save As InstallWmp10.cmd In YOUR-HARDRIVE:\XPCD\TMP10 Notes : For The Script Ping Is A Way To Pause The Script X Amount Of Seconds I Use This To Replace Sleep.exe Which Is Not Included In XP And Must Be Downloaded The Vbs Part Is The Clean Up It Removes Every Thing From The Install Process. Note : In Note Pad This Must Be Saved As A Allfile Type Or You Will End Up With This InstallWmp10.cmd.txt And Then it Will Fail. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::: ::::::::::::::::::::::::::::::::::: CUT AND PASTE BELOW HERE ::::::::::::::::::::::::::::::::::::::::::: echo off && Cls && mode 55,3 && color f1 && TITLE INSTALL WMP 10 && echo. && Echo Installing WMP10 set T10=%systemdrive%\TMP10\WmpCup.vbs Ping -n 1 127.0.0.1>nul > %T10% Echo Dim Shell, Fso >> %T10% Echo Set Shell = WScript.CreateObject("WScript.Shell") >> %T10% Echo Loc = Shell.ExpandEnvironmentStrings("%SystemDrive%") >> %T10% Echo Set fso = CreateObject("Scripting.FileSystemObject") >> %T10% Echo fso.DeleteFolder( Loc ^& "\TMP10") Ping -n 2 127.0.0.1>nul start /w %systemdrive%\TMP10\setup_wm.exe /Q /R:N /DisallowSystemRestore Cls && Color f2 && Echo. && Echo Completed WMP10 && Ping -n 4 127.0.0.1>nul start %T10% ::::::::::::::::::::::::::::::::::: CUT AND PASTE ABOVE HERE ::::::::::::::::::::::::::::::::::::::::::: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :::: Green Are The New Lines That Must Be Added 6:\ Open What Ever App You Would Use To Make A Sfx File 7:\ Then In Windows Explorer Hit The Edit Tab Hit Select All Or Control + A Now Make All The Files In YOUR-HARDRIVE:\XPCD\TMP10 Into A Sfx File NOTE - Do Not Include This Folder YOUR-HARDRIVE:\XPCD\TMP10 Just The Files It Self. My WinRar SFX Code 8:\ Next Move The Sfx File To YOUR-HARDRIVE:\XPCD\i386\SvcPack 9:\ Now You Can Delete Or Keep This Folder YOUR-HARDRIVE:\XPCD\TMP10
-
This In My Test Will Play Either WMP10 Or Mplayer2 Hidden Just Edit This Line In The Script Blue Is The New Code Line It Set To Run WMP10 Just Replace The Red With A Blue Line Red Is The Old Line Of Code ' These Make The Code Line Inactive.
-
This Is My Own Theme I Modified From Royale
-
You Need To Edit The Msstyle It Self I Used Style Builder To Do Mine
-
The Screen Shots Are For The First Script Or Version Use The Second Version It Requires No Typing The Vbs Tells It to play that way I Have The Cmd That Way so when it run in A Ua Install You Could Close It If It was Causing Any Problems. I dont know about this at the 39 min mark. I have never had any success running anything from there.
-
Thanks For The Compliments This seems to start WMP10 Min And Hidden Sometimes Example When Testing It would WMP10 open and i would min it to task bar. Then Later After I Posted It Here, When I ran the script and choosed a .wpl It would start hidden.