
Guimenez
Content Type
Profiles
Forums
Events
Posts posted by Guimenez
-
-
Hi
i'm trying to use drivergeek, but it doesn't install some drivers, but if i run driverforge with
the same drivers, it install everthing
What can i do?
thanks
-
No. We can use to slipstream to an original Windows cd installation (works perfect)
but it doesn't work directly with sysprep.
Its difficult to add massstorage to sysprep. I can't find a really working solution
thanks
Auto-slipstreaming into sysprep.inf is not hard, just that Sysprep is very picky. Some of the drivers I had to modify its INF file to prevent Sysprep from hanging during the preparation stage.
No promises but I'll see what I can do....but DON'T keep your hopes too high
Wow
:D:D
Many thanks
I hope you can do that, because you will help a lot of people.
Lots of people are trying to make the definitely how to add automatically sata drivers in to sysprep. The vernalex site helps a lot
but after resealing, most of the times it gives bluescreens.
Many thanks once again
-
Hi
First of all, nice work
any change for new updates?
Thanks. Umm...probably not. I no longer work in IT and I don't have access to any of the hardware that I used to verify RSlip with.
any chance to integrate the massstorage drivers of the site driverpacks.net (excelent site)?
I haven't tried Driverpacks before but doesn't it already do what RSlip does and probably better?
Cheers,
No. We can use to slipstream to an original Windows cd installation (works perfect)
but it doesn't work directly with sysprep.
Its difficult to add massstorage to sysprep. I can't find a really working solution
thanks
-
this is getting complicatted because i don't know anything of script programming
its not possible if when the script try to create the folder in the destination drive and it gives error then
ask for format drive?
thanks
-
thats true jaclaz
the script detects the drive D: (because it exists on windows)
now i just need to format the destination drive if its not formatted
thanks
guimenez
-
Sorry for my late reply, but i don't know why, i didn't see the reply message
Ok this is my situation:
When i install Windows, i create 2 partitions c:(OS) and d:(Backup purpose)
After installing Windows, the 2nd partition (d:) it's not formatted and if i change documents do 2nd partition
without formating it will give me errors, all i want its, after choosing the destination drive(fat ou ntfs) it will
verify if its formatted, if not, it will format the partition and then change the personal folder locations.
Thanks once again and sorry for my late reply
Guimenez
-
Excellent guide, but this is not enough
because the OEMPnPDriversPath only can have 4k
you need to add all drivers path in he registry "devicepath" section
The massstorage pack from driverpacks.net as lots of them, but its not easy to make it work with sysprep.
There are lots of version of how to, but none working 100%
cumps
Guimenez
-
Hi
First of all, nice work
any change for new updates?
any chance to integrate the massstorage drivers of the site driverpacks.net (excelent site)?
thanks
-
i've made the change and now it gives me another error
i've create a new partition and i didn't format it
and now it gives me error on the script in this line
If InStr(1,DR.FileSystem,"ntfs",1) Or InStr(1,DR.FileSystem,"fat",1) Then
character (4)
if its formatted it works fine now
. now its the unformatted problem
thanks
-
Hi gunsmokingman
Thanks for the update.
i'm trying the script and its giving me erros on line 138 (but i've remove that line)
and it works
if i choose any disk it says that its not formatted(even if it is) and after pressing a key
it doesn't format the drive.
Maybe i'm doing someting wrong
thanks
-
Thanks gunsmokingman
with this command: start "" /wait "change_personal_folders.hta"
it works perfectly
your last update its giving me errors on line 139 char 5
please, can you add last things for getting this more perfect?
- remove the %systemdrive% letter (like Yzowl said).
- When choosing the destination drive it will identify if its formated, or not. if not, it will ask if we want to format the destination drive
once again many thanks for all your help,
PS: if this will give you more troubles, forget it, because now its working 100%
-
my batch file install a lots of applications in silent mode and now before everthing,
i want to change the user personal folder with your excelent script. But
when i run this comand in a batch file it close the windowbatch and ask me if i want to terminate the batch file
my batch example:
start /wait "change_personal_folders.hta"
thanks
-
Please gunsmokingman
can an you convert this to vbs?
because i need to run with a batch file and the batch files doesn't runs HTA files
many thanks
-
I've found how to show a box after the finished operation and then exit the program
:D
add this lines after the next code:
alert("Changes successfully done")
onclick=window.close()
For Each Obj In Loc
A1 = Split(Obj," - ")
Dir = Drv & A1(1)
If Not Fso.FolderExists(Dir) Then Fso.CreateFolder(Dir)
Act.RegWrite A1(0),Dir
Nextlike this:
For Each Obj In Loc
A1 = Split(Obj," - ")
Dir = Drv & A1(1)
If Not Fso.FolderExists(Dir) Then Fso.CreateFolder(Dir)
Act.RegWrite A1(0),Dir
Next
alert("Changes successfully done")
onclick=window.close()many thanks all of your for such a great help
this application will help a lot of people that needs to change the personal folders after installing windows
Guimenez
-
Actually I was under the impression that there should be no need to touch the 'Shell Folders' keys.
All work should be done on the 'User Shell Folders' keys which should in turn propagate down to the Shell Folders key.
i'm searching changes on the registry and i've found that in Windows XP some folders (like video and music) are not in
the "User Shell Folders" but in the "Shell Folders". I'm changing the two occurrences in the registry
Guimenez
-
Thanks gunsmokingman and all of you that are help me in this script.
This script is working fantastic
:D:D
is it possible to show a box saying that the job was successfully done and then after pressing ok
the script will close?
many many thanks
PS: i notice that we need to change the User Shell Folders too, i change the array, adding the User Shell Folders location too
-
The vbs script is still not working, if i remove the bracket Act.RegWrite A2(0),Dir
but if i use the hta version it works
is it possible to customize the application?
it's more simple to have butons to choose the destination drive (button to drive D:),button to drive E:) or simple just inserting the drive letter without the " : "
and after successfully operation the program will automatically exit
what are the steps for doing this please
once again thanks all of you for the help
Guimenez
-
thanks for the help and the script.
when i save the script in notepad and save it as vbs(like i always do)
when i run it gives me an error on the line 51 character 28
it says "its not possible to use brackets while calling a function"
but the character 28 it doesn't exist!!!
many thanks once again
-
Thanks for replying
this script works with all language. The only thing that need to be modified
is the name of the destination folder.
I want to change the location even if the folder exists. I think i need
to Make some chances on this.
This script can be better but i'm not a great programmer
i'm just trying to make this working
but the last
steps to make the user choose the destination folder its getting complicated for me
i know that windows vista/7 have diferent struture folder but i prefer join all
user folders in the same dir. Like Windows XP
this script os working and i'm testing it a little more
can anyone help me on this?
This script is very usefull because i format and install Windows for
about 10 times in a day and i need to change every time the documents
folder do another partition
thanks
-
Hi, thanks for replying
i've made the script now and its working
the main problem its that sometimes a need to move to another location that its not D:
i need to make a question to choose destination folder that can be D:, E: or F:
and then it will copy to destination choose by the user
this is my code
if MsgBox("Do you want to change documents folder to drive D:", vbYesNo) = vbYes then
msgbox "verify that D: its formatted"
Set WshShell = WScript.CreateObject("WScript.Shell")
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
if fso.FolderExists("d:\os meus documentos") then
else
set f = fso.CreateFolder("d:\Os meus documentos")
End if
if fso.FolderExists("d:\os meus documentos\As minhas imagens") then
else
set f = fso.CreateFolder("d:\Os meus documentos\As minhas imagens")
End if
if fso.FolderExists("d:\os meus documentos\A minha m˙sica") then
else
set f = fso.CreateFolder("d:\Os meus documentos\A minha m˙sica")
End if
if fso.FolderExists("d:\os meus documentos\Os meus vÌdeos") then
else
set f = fso.CreateFolder("d:\Os meus documentos\Os meus vÌdeos")
End if
WshShell.RegWrite"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Personal", "D:\OS MEUS DOCUMENTOS"
WshShell.RegWrite"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\My Pictures", "D:\OS MEUS DOCUMENTOS\AS MINHAS IMAGENS"
WshShell.RegWrite"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\My Music", "D:\OS MEUS DOCUMENTOS\A MINHA M⁄SICA"
WshShell.RegWrite"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\My Video", "D:\OS MEUS DOCUMENTOS\OS MEUS VÕDEOS"
else
End ifmany thanks
-
Hi everyone
i'm searching on the net without any result
i'm trying to create a vbs script that change the default documents folder do another location (ex: d:)
i need this to work in XP,Vista and Seven
Can anyone help me on this
many thanks
-
Sorry, i was downloading another program, i forgot do scrool down
many thanks
it will be possible to speed up the process to find the hardware?
it take for about 8 minutes searching for the drivers before starting the installation.
I have in my root usb disk the driverforge and a folder called drivers (with driverpacks inside)
What is the path that i put in the driverforge without changing every time i use in another pc, i've try it only "drivers" but doesn't work.
i need to search every time for the drivers folder before start
thanks
Congratulations for this great software, it works 100%
-
Please, can anyone explain me how to use this great program?
i compiled the program with autoit
i put the driverpacks drivers uncopressed in one folder called driver
then i run the program
and how can i make the program install the drivers on my computer
thanks
-
Hi
Please, i want to remove the Microsoft Windows 7 text from my logonui file.
I'm making my windows XP fill like Windows 7 but i don't want the windows 7 text because i'm using the windows XP, i just
want the appearance.
I know that i need to use the reshacker, but i've try it everthing and nothing.
hope someone help me
thanks
vbs script to change documents paths do another location
in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Posted · Edited by Yzöwl
CODE tags added
This is my final script.
Its not perfect, but it works well.
PS: The dialogs are in Portuguese.
Many thanks to all of you