Skip to main content

Posts

Showing posts from December, 2018

Word header does not print correctly

Ever printed a document and set the header as 1 inch. After printing the header is adjusted and it’s not the same with the specified settings on the header. There are numerous solutions to this single issue. Updating printer driver may help to solve this problem. Selecting the proper size of the document before printing that is same size with the paper that is on the printer. And a lot of possible solutions. Another solution to solve this issue is to check the headers and footers on page setup. On the document click on “File”, click “Print”. On the Print window, click “Page Setup” at the bottom on this window. See image below: On “Page Setup” window, click the “Layout” tab and adjust the “Headers and Footers” as per requirement. See image below: After adjust to a desired setting, click “Print” and if everything goes well. Then the printing will be as expected. Cheers..till next time.   ================================ Free

Add multiple drivers to a WinPE image

How to add multiple inf drivers to a Windows PE Image? To add a single driver to a Windows PE Image  is quite straight forward but adding multiple drivers  one by one is not ideal or else it will take a definite amount of time. Dism command provides an option to add a single driver or add multiple drivers. To add a single driver or multiple drivers, the first thing to do is to mount the image for editing. Dism /Mount-Image /ImageFile:"C:\WinPE_amd64\sources\boot.wim" /index:1 /MountDir:"C:\WinPE_amd64\mount" C:\WinPE_amd64\media\sources\boot.wim  -   is the image where the new drivers will be added C:\WinPE_amd64\mount - this directory will contain the extracted files of wim images, the folder must be created if it doesn't exist Once the image has been mounted, to add a single driver type the command below: Dism /Add-Driver /Image:"C:\WinPE_amd64\mount" /Driver:"C:\Folder_Driver\driver.inf" C:\WinPE_amd64\mount - the fold