jaclaz Posted April 2, 2010 Posted April 2, 2010 I am not at all an expert in vbs, what I was suggesting, maybe improperly is that the drive letter is assigned anyway as long as a partition entry is created in the MBR (or in the EPBR), so all it is needed is to add a condition that triggers the format if DR.FileSystem equals whatever vbs returns for a drive not formatted, cannot say if "", 0, -255, "a suffusion of yellow", or anything else, something like *PSEUDO* CODE:If InStr(1,DR.FileSystem,"<whatever is returned on an unformatted volume>",1) Then jaclaz
Yzöwl Posted April 2, 2010 Posted April 2, 2010 I'm not sure that it can determine an unformatted drive, (I'm not even sure if it can determine CDFS). If that is the case then you'd have to use If Not InStr with NTFS and potentially also FAT32 to highlight any drive not formatted as either of those two and format if True.
Guimenez Posted April 8, 2010 Author Posted April 8, 2010 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 thenask for format drive?thanks
Guimenez Posted August 17, 2010 Author Posted August 17, 2010 (edited) This is my final script.Its not perfect, but it works well.PS: The dialogs are in Portuguese.Many thanks to all of you<TITLE>Alterar Pastas Pessoais </TITLE><HTA:APPLICATION Id="ChangeLoc" APPLICATIONNAME="LocChange"SCROLL="no"SINGLEINSTANCE="yes"SELECTION="NO"CONTEXTMENU = "NO"BORDER="Thin"BORDERStyle = "Normal"INNERBORDER = "YES"MAXIMIZEBUTTON = "NO"MINIMIZEBUTTON = "NO"SYSMENU = "NO"><STYLE Type='text/css'>Body{Font-Size:12pt;Font-Weight:Bold;Font-Family:Segoe Ui, Lucida Console, Arial, Tahoma, Comic Sans MS;Color:Black;BackGround-Color:Transparent;Filter:progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#ece6e0',EndColorStr='#c0bab4');Margin-Top:1;Margin-Bottom:1;Margin-Left:4;Margin-Right:4;Padding-Top:1;Padding-Bottom:1;Padding-Left:4;Padding-Right:4;Text-Align:Center;Vertical-Align:Top;Border-Top:0px Transparent;Border-Bottom:0px Transparent;Border-Left:0px Transparent;Border-Right:0px Transparent;}.Txt{Font-Size:10pt;Font-Weight:Bold;Font-Family:Segoe Ui, Lucida Console, Arial, Tahoma, Comic Sans MS;Margin-Left:1;Margin-Right:1;}BUTTON{Width:71pt;Height:14pt;Cursor:Hand;Font-Size:9pt;Font-Weight:Bold;Font-Family:Segoe Ui, Lucida Console, Arial, Tahoma, Comic Sans MS;Color:#001137;Text-Align:Center;Vertical-Align:Middle;Filter:progid:DXImageTransform.Microsoft.Gradient(StartColorStr='AliceBlue',endColorStr='LightSlateGray');Border-Top:0px Transparent;Border-Bottom:0px Transparent;Border-Left:0px Transparent;Border-Right:0px Transparent;Padding-Top:0;Padding-Bottom:2;Padding-Left:0;Padding-Right:0;Margin-Top:1;Margin-Bottom:1;Margin-Left:1;Margin-Right:1;BackGround-Color:Transparent;}.B1{Color:#003711;Filter:progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#BAEABA',endColorStr='#226644');}Select.Bx1{Font-Size:8.05pt;Font-Weight:Bold;Font-Family:Segoe Ui, Lucida Console, Arial, Tahoma, Comic Sans MS;}</STYLE><script LANGUAGE='JScript'>window.resizeTo (375,151)window.moveTo(screen.availWidth / 2 - (425/2),screen.availHeight / 2 - (201/2));var Act = new ActiveXObject("Wscript.Shell"); var Fso = new ActiveXObject("Scripting.FileSystemObject");</SCRIPT><script language="VBScript">'-> Array To Hold The Reg Keys And Users FoldersDim Loc :Loc = Array( _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Personal - Documentos", _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\My Pictures - Documentos\Imagens", _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\My Music - Documentos\Música", _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\My Video - Documentos\Vídeos", _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Personal - Documentos", _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\My Pictures - Documentos\Imagens", _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\My Music - Documentos\Música", _"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\My Video - Documentos\Vídeos")Dim A1, C1, Dir, Obj'-> Populate The Listbox With DrivesFunction Window_onload()For Each Obj In Fso.DrivesIf Obj.DriveType = 2 ThenC1 = C1 + 1Set Lst = document.createElement("OPTION")Lst.Text = Obj & "\"Lst.Value = Obj & "\"If C1 Mod 2 ThenLst.style.backgroundcolor = "#D9D9D9" Lst.style.color = "#3A3A3A"Else Lst.style.backgroundcolor = "#E9E9E9" Lst.style.color = "#235779" End IfDrv.Add(Lst)End IfNext End Function'-> Work Function Work(Drv)If Drv = "" Thenalert("Introduza uma letra da unidade" & vbcrlf & "Error Number 1")Elsealert("Atenção, caso a unidade " & Drv & " não esteja formatada, terá que a formatar no passo seguinte. Caso contrário, feche a janela da unidade " & Drv & " que irá aparecer.")Act.Run("explorer " & Drv)alert("Prima OK para continuar")For Each Obj In LocA1 = Split(Obj," - ")Dir = Drv & A1(1)If Not Fso.FolderExists(Dir) Then Fso.CreateFolder(Dir)Act.RegWrite A1(0),Dir Nextalert("Alteração concluída com sucesso")onclick=window.close()End If End Function</SCRIPT><BODY Scroll='No'><TABLE Style='Margin-Top:3;Margin-Bottom:5;'>Alterar Musica, Documentos, Imagens e Vídeo</TABLE><TABLE><TD Class='Txt' Style='Width:161pt;'>Indique a unidade para onde pretende mover os Documentos</TD><TD><Select size='1' Name='Drv' Class='Bx1' Style='width:45pt;' tabindex=1></Select></TD></TABLE><TABLE Style='Margin-Top:3;'><TD><BUTTON ID='Btn01' onmouseover="this.className='B1'" onmouseout="this.className=''" onclick='Work(Drv.value)'>Alterar</BUTTON></TD><TD><BUTTON ID='Btn02' onmouseover="this.className='B1'" onmouseout="this.className=''" onclick='window.close();'>Cancelar</BUTTON></TD></TABLE> Edited August 17, 2010 by Yzöwl CODE tags added
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now