Content Type
Profiles
Forums
Events
Everything posted by Tripredacus
-
End Users can do unimaginable things, and not only that, they won't (be able to) tell you what they did.
-
There are still driver problems but sometimes you can get by using the Vista drivers.
-
Follow these instructions. You can download the debugger and have it watch the program that crashes. http://www.msfn.org/board/index.php?showtopic=130003 Also, in the future, do not quote or reply to your own posts, use the edit function instead.
-
Subscript Out of Range
Tripredacus replied to Tripredacus's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
OK ha yes of course you found this other things, like launching the following programs: 1.exe vista_pe_selector.exe xp_pe_selector.exe Those are my custom apps that I replaced those functions from the regular functions. The Append, Unmount and DoTask subs are in the original 9.0 source. I do not want the regular software people to have access to such things that would allow them to easily replace or erase the files on the server. So the PE_Selectors are apps that all for post-deployment installations of programs. The 1.exe does a drive remap to accomodate certain NICs which take too long to get an IP and when the drive mapping fails. Such as: '------Remap1 Confirmation ***** CORRECT THIS ***** Sub Remap1 If window.confirm("Click OK to remap Network") Then objshell.run("1"),0 '<--- Huh? **** End If End Sub '----------- 1.exe has the following code (its in AutoIT) ; Program to workaround GImageX getting System Error 1231 RunWait( @ComSpec & " /c net use z: \\imagex.wds.local\images Password1 /user:remote" ) RunWait( @ComSpec & " /c net use v: \\vistaserver.wds.local\share Password1 /user:remote" ) Sleep( 1000 ) ProcessClose( "mshta.exe" ) Run( "mshta x:\windows\system32\ImageX.hta" ) I forgot that I had modified the Imagex.hta v9.1 version. I will try this out in a little bit. Also, you noted "unmount" is not called anywhere. In my current HTA (v7.1) it has this in the tools section: <input type="image" src="pics\unmount.png" title='Unmount Image' name="image" width="30" height="30" onclick=unmount()></input> -
It would appear so. Here are two threads you may find useful: http://www.msfn.org/board/index.php?showto...8&hl=domain http://www.msfn.org/board/index.php?showto...0&hl=domain
-
Is there any indication on the taskbar icons that show if some are in fact minimized windows and not shortcuts?
-
Yes that did work. The Additional Drivers button didn't give me even a Vista option, so I chose XP x64 and pointed to the Vista x64 drivers. It did it aok from there!
-
It depends on what your target audience is. For OEMs you still need it but not likely for corporations. For my uses, I put the client into Audit mode, but its because we sysprep the machine before shipping. If you choose OOBE instead, the sysprep process is done during install. Anytime you finish your deployment and you get the Windows Welcome, that is the end result of Sysprep.
-
What does the DHCP logs say about these MAC Addresses? Are all clients experiencing this, or only some of them?
-
Some recent versions of CCC require specific .NET Framework versions to be installed. What version are you up to now? Also, can you easily reproduce this error? You may want to attach the Windows Debugger to mom.exe and recreate the crash.
-
As of now we have 1 Windows 7 Ultimate x64 computer on the domain. There is a Windows XP Pro SP3 computer that has a shared printer (not a network printer) that is an HP LaserJet P1505. If you try to add the printer from Win7 you get an error. If you try to connect to the printer, it says there are no drivers for it. I looked on HP's website and they do not have any Windows 7 drivers for this model. My question is, can I install the "Extra Drivers" on the XP computer using the Vista x64 driver package? And generally, can Vista x64 drivers work with Windows 7 x64?
-
Speaking of which... The Prodigy - G-Force (Energy Flow) no its not a coincidence. I kept skipping ahead to find the next German song but this came up instead.
-
I can install Vista using Unattend and WDS. My development with it is halted right now as I wait for R2. You can see my original project thread here: http://www.msfn.org/board/index.php?showtopic=130994 And an example of the WDSClientUnattend.xml file here: http://www.msfn.org/board/index.php?showtopic=134633 So basically make your XML with WSIM, then split it so that the Server side XML contains only the two passes listed in my XML example. The rest of the passes get attached to the install image.
-
I just use more than 1 boot image. And from each boot image, I have it handle separate things. Right now I have 4 (on my test server) that handle XP, Vista, 2008 and a test.
-
Desktop support is a good perspective to start in any management role because it gives you direct contact with the end users.
-
Gustav Holst - Pluto, Lord of the Underworld
-
This may happen as we try to correct the problem.
-
Updates! 7Server Promoted to be a Domain Controller for SHARK Migrated Schema Master, Domain Naming Master, Relative ID Master and PDC FSMO Roles. Currently Unclesocks retains PXE, DHCP, DNS, WDS and the Infrastructure FSMO Role
-
It happens with fast reply, reply and new topic. Haven't seen it with full or quick edit yet. When completing an edit with "Quick Edit," the form just freezes up and doesn't complete the edit at all. I have to copy everything and use the "Full Edit" to, well, edit my posts. That's not happening for me at all. I haven't tested the timeout option with edit, I can do that now.
-
If you go into the RAID BIOS, does it say the array is healthy?
-
Subscript Out of Range
Tripredacus replied to Tripredacus's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Yes, see it calls EnumDirs at the end, which is what is supposed to show that on the screen. Here is that portion, or look at that in the code you changed. Sub enumDirs Dim colFilelist, objFile, strButtons, objShortcut, colTargetList, objTarget, x, y, strKey, strItem, k, mxChk, tmpstr1 ReDim arrButtons(1,-1) Call VolInfo(tmpstr1) strBody = "" mxChk = "" strTaskValue = "1" For k = 0 To Ubound(strIndx) ReDim Preserve arrButtons(1,UBound(arrButtons,2)+1) arrButtons(0,UBound(arrButtons,2)) = strNames(k) arrButtons(1,UBound(arrButtons,2)) = "<Input type=radio name=radioList id='" & strIndx(k) & "' onClick=showRadioInfo>" & strNames(k) & " - (Index: " & strIndx(k) & ")</BUTTON><BR>" Next 'Perform a a shell sort of the string array based on button label For x = 0 To UBound(arrButtons,2) - 1 For y = x To UBound(arrButtons,2) If StrComp(arrButtons(0,x),arrButtons(0,y),vbTextCompare) > 0 Then strKey = arrButtons(0,x) strItem = arrButtons(1,x) arrButtons(0,x) = arrButtons(0,y) arrButtons(1,x) = arrButtons(1,y) arrButtons(0,y) = strKey arrButtons(1,y) = strItem End If Next Next For x = 0 To UBound(arrButtons,2) strButtons = strButtons & "<tr><td id=buttonTd>" & arrButtons(1,x) & "</td></tr>" Next strBody = strBody & "<BR><BR><b>Select Image to Apply:</b><BR><BR><HR><BR>" body.innerHTML = strBody strBody2 = "<BR><HR><BR><!--<button class='Btn' id=start title='Start Installing' Accesskey=S onclick=doTask(strTaskValue)><U>S</U>tart installing</BUTTON>--><BR><BR><BR>" wimlist.innerHTML = strButtons wimlist.style.visibility = "visible" body2.innerHTML = strBody2 asemat.InnerHTML = "<div id='diskinfo'><BR> <TABLE class='diskinfo'><B>Logical Disk Information:</b><BR><BR><P><tr><td><b><u>Drive</b></u></td><td align=center><b><u>Type</u></b></td><td align=center><b><u>FS</u></b></td><td align=center></td><td align=right><b><u>Used</u> / </b></td><td algin=left><b><u>Total </u></b></td></tr>" & tmpstr1 & "</TABLE></P></div>" asemat.style.visibility = "visible" End Sub -
Subscript Out of Range
Tripredacus replied to Tripredacus's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
Yeah, that's the v9.0. Geezery sent me a v9.1 version, which is what I am working on. You can post your cleaned up code in that thread and I will update the post later. As far as getting the image index to work with this sub, I can tell you that it is creating the txt files and running the imagex /info command. But it is not displaying the names of the images inside the WIMs when you select them. Perhaps that isn't handled in this sub? -
Is there a way to have a User that is the Computer Administrator be able to run programs without having to right-click and choose 'Run As Administrator?'
-
It happens with fast reply, reply and new topic. Haven't seen it with full or quick edit yet.
-
Subscript Out of Range
Tripredacus replied to Tripredacus's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
I am wondering where you got the full source for version 9.1? Only verson 9, the one in my post, it available as far as I know. Edit: OK the page renders now, but it won't show the different images in each WIM. So something is different. All that should be different for this subroutine and the one in version 9.0, is that it should show the Image Index number parsed from the XML in IMAGEX /INFO next to the DESCRIPTION, which should be next to the radio button.