Jump to content

Tripredacus

Supervisor
  • Posts

    13,327
  • Joined

  • Last visited

  • Days Won

    24
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Tripredacus

  1. Welcome to the MSFN!
  2. Fedex say they do on the TV

  3. It is all in the WAIK documentation, but here is a starting point: http://technet.microsoft.com/en-us/library/dd744341%28WS.10%29.aspx
  4. The only thing I know about the recycle bin is that you need an equal amount of space on the drive to the amount of files in the Recycle Bin in order to delete from there. For example, I had a system where I had 100MB free on C, and had 650MB files in the Recycle Bin. For some reason I could not empty from the Recycle Bin! I had to restore the files out of the Recycle Bin and then delete them with the DOS prompt.
  5. Yes that is the file that creates the partition, or sets it if it already exists. This file will be somewhere on your system, you can open it and read it. If you read it, you will see near the bottom where it sets the volume ID.
  6. You may be able to find out more info using Process Explorer and Process Monitor. You can set ProcMon to use filters and enable extra information.
  7. I'm not sure about using a USB drive. In theory it should work. Make sure you are using the correct drive letters. In my HTA I have replaced the functions of the capture and append buttons because I did not want our regular technicians to have the ability of changing the images. All of my images are stored on a file share. I do all my capture/append/delete work using the command prompt button. Oh I have also seen there are some instances where imagex does not like capturing and saving the WIM file to the same physical hard disk. I ran into this problem when trying to create recovery with WinPE 2 on netbooks for XP.
  8. I remember making this mistake when I tried to make Vista install via PXE.
  9. On some notebooks, those special or Fn keys are controlled by a program on the OS. For example, the keys on MSI notebooks will only work if you have the SCM installed. Even a whitebook (barebone) notebook is made by someone. See if you can track down who that is and see if you can find this software.
  10. I don't know if the Recovery DVD will put the recovery partition back on. From looking at my Vista WinRE info, it appears there may only be 2 reasons why it does not give the option anymore: 1. The drive ID number has been changed. 2. The volume GUID has been changed. Unfortunately I can only give these reasons and not be able to assist you in fixing it.
  11. I removed your attachment because you had your product key in it. That path is a protected folder. You normally shouldn't have access to it. It is for system level use. What kind of changes did you make to your base image? Did you move the profiles to another location besides the default?
  12. Well be at ease that your admin decided to go the right way. A lot of times people in companies don't care about their products or service enough to follow rules in license agreements and policies. I guess it all comes down to how much you could possibly lose if you got caught. Anyways, there is always another way to do things. I've learned a lot here myself.
  13. You'd have to test this. i do not know if this works. I adapted your code into an existing AutoIT script I made to pull different info. #include <file.au3> Global $sWMIService, $objWMIService, $colItems, $sName, $oItem $sWMIService = "winmgmts:\\" & @ComputerName & "\root\CIMV2" $objWMIService = ObjGet($sWMIService) IF IsObj($objWMIService) Then $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_BIOS") If IsObj($colItems) Then For $oItem In $colItems $sName = $oItem.Manufacturer Next EndIf This is an incomplete function. This code doesn't do anything but get the Manufacturer and store it as a variable $sName. I also just declared everything a global. Probably don't need everything but $sName needs to be a global in order for the rest of the script to access it. So now that you have your result stored in $sName, you could verify it with this: MsgBox(64, "Win32_BIOS Item", "manufacturer = " & $sModel) So then now you have this as a global variable, you can do other things with it besides show it in a messagebox. While you can do the multiple IF/Then statements, you should probably use a Switch statement instead.
  14. After install, it wants you to enable auto updates, yes this is true. But if you change your setting to "download and ask" instead of "install automatically" MSE won't complain. That is how I use it.
  15. You can reprogram every key with their software.
  16. I am not familiar with this method. I have written scripts to read from the DMI via WMI but using VBScript and AutoIT and not a cmd file. Moving to scripting forum.
  17. Welcome to the MSFN! As a next step, you should read the license agreement for nLite. You'll find posts all over the nLite forum regarding this, here is an example:
  18. Oh yeah, I forgot about training... or getting docs from Microsoft. Once when I had nothing to do I read the 200 page Office 2010 training book.
  19. This keyboard promises to be the most customizable keyboard ever, but it is also out of mostly everyone's price range: http://www.artlebedev.com/everything/optimus/
  20. I use Heavy Load and Treesize: http://www.jam-software.com/freeware/index.shtml
  21. Some of them are able to be used if you use the ASCII code. There was one code that did get updated when XP came out, and that was the Delete code is now "ignored" by Windows. In Windows 98, if you put the Delete code in a file or folder name, you couldn't open or delete the file from Explorer, only could do things in the command prompt. I am guessing the reason why they still don't let you use those reserved characters is because Windows is still based on the command interpreter, which isn't smart enough to know anything about fonts.
  22. I basically handle my work schedule with projects. If all current projects are completed and I am in relative limbo, I have the following on my list: - testing new recovery partition solutions - develop a thin client that supports video acceleration for burn in - organize files on the file server - rewrite the loader on our USB Boot Keys - test server backup solutions - rewrite websites/test security Otherwise i just throw the football around the office.
  23. In my HTA, yes the value does not update but it actually does in the background. I think this is why the GImagex HTA has a reload button on it... Anyways, what WinPE are you using? In WinPE 3, diskpart commands are recognized instantly by the system, while in WinPE 2, you needed to do rescans or refreshes. I ran into this problem when I was converting my recovery partition to WinPE 3 and didn't know that diskpart updates instantly. I've asked these questions to Microsoft as well (concerning drive letters) when I was having problems fixing drive letters of multiple partitions and custom recovery. Unfortunately, there isn't much you can do about how WinPE assigns letters. Basically you should design your system around how WinPE operates. You could use trickery to re-assign letters to existing partitions (using hidden files) but then you get into trying to fool proof the system. Like what if a user has a USB key plugged in? Well you can't account for every situation!
  24. I don't know if it is important infos, but what are the operating systems on these Domain Contollers?
  25. You will probably get a faster response in the Application Installs section. I shall move this topic there.
×
×
  • Create New...