The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
28 views

How do I detect if WinPE(4) has booted from a UEFI or BIOS?

I am looking for a way to reliably detect when I boot into WinPE 4 (powershell) (or WinPE 3 (vbs) as an alternative), have I booted from a UEFI or BIOS System? (without running a third party exe as I ...
0
votes
0answers
13 views

how to completely unmount dism? [closed]

I mounted boot.wim to add some reg info then I tried to unmount it and for some reason it got corrupted. when I typed: dism /get-mountedwiminfo it shows my mounted image is in invalid status. ...
0
votes
0answers
57 views

.Net 3.5 app on Win PE 4.0 image

Assuming a WinPE 4.0 image is setup correctly with the WinPE-NetFx4.cab, WinPE-NetFx4_en-us.cab and prerequisite packages like WMI, should an app built in Visual Studio 2008 for .NET 3.5 execute? Or, ...
0
votes
0answers
66 views

Build bootable iso from kernel and winpe image

IS there any way to build bootable iso image from kernel image (bzImage)? I have kernel bzImage file with me which is custom built kernel using buildroot. It has inbuilt initrd too. I tried poking ...
0
votes
0answers
95 views

Cannot query Active Directory using ServerBind on non-domain computer in Windows PE

I have a need to write a .NET application which will query Active Directory while running in Windows PE on a computer which is not yet a member of the domain. We are running this during a Microsoft ...
0
votes
0answers
22 views

.NET GUI Not Displaying In WinPE [duplicate]

I have created a utility in C#, something basic. I have it running during an SCCM task sequence deployment. One of the first things it does (during the form load event) is query ldap. That portion of ...
0
votes
1answer
161 views

.NET GUI Not Displaying in WinPE

I have created a utility in C#, something basic. I have it running during an SCCM task sequence deployment. One of the first things it does (during the form load event) is query ldap. That portion of ...
1
vote
1answer
138 views

Batch File modify one charactar in exported hex registry value

I am looking for a way to modify a .reg (or .txt) file that is an exported registry value. I can already export the registry file, I just need a way to change just one character that is about the ...
0
votes
1answer
221 views

Read EDID direct from monitor NO drivers

I got this c# project where I'm trying to extract the edid directly from the monitor. The goal is to make a application which can run on winpe without any drivers installed. I know it is possible to ...
0
votes
0answers
19 views

Need to extract and use data from CMD (bsdedit)

I'm running into some problems with CMD. I am using WinPE to install a Windows 7, but every time I executed my scripts, it was missing his bootloader. After a long search, I've found the command to do ...
1
vote
2answers
410 views

Cannot fully delete ProgramData from Windows 8 installation within WinPE

I have a script that runs in WinPE that takes a system drive with Windows installed and deletes everything off of the drive (keeping the filesystem intact). When dealing with a Windows XP/Vista/7 ...
0
votes
1answer
44 views

Variant string conversion in C/C in WinPE environment

I have C/C++ code issue wherein there's WMI query which retrieves instances of Win32_DiskDrive and gets its Size property. This property is retrieved as Variant type and then I have to convert it to ...
-4
votes
1answer
169 views

C# get max resolution on winpe, without any drivers

Im looking for a way to get the maximum supported screen resolution. I need to find this without any drivers installed. I have already tried using WMI and the EnumDisplaySettings. Is it possible to ...
0
votes
0answers
219 views

How can I mask/hide password entry in WinPE using batch or vbscript?

I need password entry to not be displayed while typing. It can either stay blank or use * characters. It can be in either batch or vbscript and it will only be used while booted into WinPE. In older ...
1
vote
2answers
515 views

Identify CD drive and eject using bat or vbs while in WinPE without external files

I need to identify the CD drive and eject the tray. This is executed while booted in WinPE, so the WMP eject function is not available. This script will be used on various computer ...
0
votes
1answer
502 views

Winpe 4 drivers not loading

I need to inject custom drivers to wim file offline. I'm using standard scenario described on MSDN http://technet.microsoft.com/en-us/library/hh825206.aspx: mount, add-components (WMI, .NET4), ...
0
votes
0answers
242 views

I am using winpe and edited the startnet.cmd with a script to find my batch script

This is my startnet.cmd of my winpe, Menu.bat is the batch file im trying to get to run. The problem is that it keeps saying Menu.bat exists on d: and trys to run it everytime. Menu.bat is not on d: ...
0
votes
0answers
123 views

Why Cant I access a shortcut's path in WinPE?

I seem to have a strange issue inside of WinPE with a .vbs: I have a mapped network drive and I am trying to add the ghost image file address to the ghost command, but it cannot resolve the ...
0
votes
1answer
379 views

Encrypted Bootable Windows PE

What I need in a nutshell: Boot Windows PE from a USB drive Encrypt a custom script which has a password in it which is within the WIN PE ISO Ideally the boot will be password protected (not ...
0
votes
1answer
996 views

WinPE auto scripts

I have just set up a bootable UFD with WinPE 3.0, and I need it to run a couple of scripts automatically on boot. I was wondering if anyone had any advice on setting up automatic scripts for listing ...
0
votes
1answer
341 views

MFC: Display output of a process asynchronously(concurrently) while process is in execution in a win32 text area (mfc application)

I want to develop an application in MFC which could start a lengthy console process and give its output concurrently on a text area of 32bit windows application. I used pipes, but it display the ...
-1
votes
1answer
691 views

Winpe: add fsutil command line option and other command line [closed]

I have a winpe iso file created by Windows Automatic Installation kit (win7 86x). After the boot, I want to run a script that looks for free space on the hard disk, and then copy a file. I want to ...
1
vote
2answers
159 views

How does Windows pass arguments to a program? (And is there a SetCommandLine function?)

How does the entry point receive arguments from the command line? I looked through a disassembly of one and found it calls __getmainargs to obtain the arguments. Is there a way to "__setmainargs"? I ...
0
votes
1answer
2k views

Batch File issue, recieving “The Filename, Directory Name, Or Volume Label Syntax Is Incorrect”

I'm recieving the following error when I run my batch file "The Filename, Directory Name, Or Volume Label Syntax Is Incorrect" My batch file runs fine, but this error pops up 25 times and then ...
2
votes
1answer
2k views

How do I add “Press any key to boot from usb” when installing Windows from a flash drive? (Grub4dos question / how to remove a bootloader)

I've been struggling with this problem for a while now and finially decided to ask for help. Let me first explain what the main purpose of the app is: to provide the a very easy to use way of backing ...
0
votes
1answer
3k views

Running 32 bit apps in WinPE 3 (Win7) 64 bit

Trying to run any 32 bit app in the WinPE 3.0 (Win7) 64 bit environment will result in the following error message: The subsystem needed to support the image type is not present. The missing ...
0
votes
1answer
352 views

setting IPV6 in command line, Win PE

Can i set the IPv6 ip address in command line? if possible please suggest me the command to use. I am using I am using WinPE environment which is equalant to VISTA but with out GUI features installed. ...
2
votes
1answer
4k views

WinPE - Adding Custom Application to boot.wim or iso

Does anybody know how to add a customer exe into a ISO or boot.wim file with WinPE? Please provide sample statements on how to add file and then launch it from WinPE Command Line. Thanks
1
vote
2answers
998 views

WinPE 2.0 (Vista) - Looking for a solution for BrowseForFolder using VBSCRIPT & HTA application

I am creating an HTA application to be run inside of a WinPE 2.0 environment. The purpose of this HTA app is to prompt the user to select a back-up location. I am currently using BrowseForFolder to ...
0
votes
1answer
335 views

ml64 - warning A6004: procedure argument or local not referenced

I have a function written for th e x64 microsft macro assembler in visual studio 2005. The function recieves 3 arguments: theFunction PROC firstP:QWORD, secondP:QWORD, thirdP:QWORD the x64 calling ...
2
votes
3answers
388 views

Starting a .NET Application From CD?

we're trying to figure out a way to build a .NET application that can run entirely self contained from a CD. Basically user pops in a CD, boots to an operating system on the CD and a barebones .NET ...
1
vote
1answer
312 views

Managed code in WinPE

If I want to run a program in windows PE (Vista or 7) am I not allowed to use any level of managed code? Can I only have c++ code that doesn't reference any dotNet code? How can I interact with ...
2
votes
1answer
1k views

Detecting AC Power connection in WinPE?

I'm trying to determine if a laptop is connected to AC power. The OS Im running under is WinPE. My app is written in native C++. WMI queries using Win32_Battery are not supported and the ...
3
votes
3answers
6k views

How can I detect the drive letter of a booted USB drive from script?

I'm launching WinPE 2 from a bootable UFD, and I need to detect the drive letter in order to tell ImageX where to find the WIM. However, depending on the machine I'm imaging, there are different ...
2
votes
7answers
2k views

What programming languages/platforms can you use for GUI in a WinPE environment?

I'm starting work on a project that must be delivered in WinPE. I will likely be able to use WinPE 3.0. I'm also aware of Bart's PE and VistaPE, but I think I'm going to stick with WinPE. I need x64 ...
0
votes
1answer
150 views

ULONGLONG value corrupted in WinPE

I have an MFC app running in WinPE (Windows Preinstallation Environment), and I'm trying to make a method call with a 64-bit value in a ULONGLONG as a parameter. I've determined that the value is ...
0
votes
2answers
2k views

Can Windows PE 2.0 support the .NET framework?

I'm interested in building a PC for a car that will boot off of a USB flash drive. I'm planning on using Windows PE 2.0 for it with the GUI being written in C# or VB.NET. Obviously, for this to work, ...