-
How do I move a Photoshop layer 1/2 pixel?
Could you not scale it to double the resolution, move it 1 pixel, then sample it back down to the original size?
-
Are RAMDisks worth it?
imdisk is free: http://www.ltr-data.se/opencode.html/
-
Switch AHCI to IDE
fix_hdc should work: http://www.911cd.net/forums/index.php?showtopic=20464 I think it's in ubcd4win, which might be easier than building your own bartpe and maybe integrating mass storage drivers: http://www.ubcd4win.com/
-
Active Directory DNS
dhcp can give out dns server addresses, although you might want to run something supported if it's online...
-
USB to Ethernet Adapters and PXE
I think you'd need to add the drivers into your PE with dism
- Best Ethernet NAS solution SOHO
-
Connect one router to another and still see devices.
What are the IP addresses and netmasks? If B is doing NAT but C has a routable address then you might be able to connect to it, but if A is doing NAT then you're probably out of luck...
-
.cmd files
Just open it with a text editor, and if you can't figure it out, post it here?
-
Nasty Virus Help
If you don't have a win pe / bartpe disk, you could try autoruns and process explorer - some malware prevents these running based on their filename, so try renaming them if they fail to launch. Good luck!
-
Are MS Updates for XP really necessary?
It depends on how clever your nat router is - some will know to open related ports, but with consumer grade kit you usually have to open ports for torrents and xbox etc, if not using uPnP. Please do link to the win8 pdf - I'd like to know what /GS is. Cheers
-
DNS Is Getting Confused Using Dual NICs
Can you run a VM with a 2nd IP address instead?
-
Onboard LAN powered when PC is shutdown
There could be wake-on-lan options in the network card driver, or in the bios. Sometimes they get creative with the descriptions, like PME (Power Management Events) or "deep sleep". Or there is always the wall switch...
-
ping and reply network problem
How would link aggregation help? If you have managed switches then you could look at the error rates, otherwise I'd try to isolate which switches / host nics / cables are involved, and try replacing them.
-
Batch Script
@echo off setlocal enableextensions enabledelayedexpansion cd /d "%~dp0" for /f "usebackq delims=" %%a in (`dir /a-d /od /b *`) do ( set file=%%a if not "!file!" == "%~n0%~x0" ( echo !file! if /I "!file:~-4!" == ".msu" ( start /w wusa %%a /quiet /norestart ) else if /I "!file!" == "rvkroots.exe" ( start /w %%a /q ) else if /I "!file:~-4!" == ".exe" ( start /w %%a /q /n /z ) else ( echo Not sure what to do with "!file!" ) ) ) pause
-
Disable file locking
That's not a goal. Are you trying to back up locked files, or just experimenting with corruption?