Jump to content

DigeratiPrime

Patron
  • Posts

    3,283
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by DigeratiPrime

  1. Open Event Viewer and check to see if anything is logged in there. Start>Run>eventvwr.msc My first guess is the memory, bad ram will cause the system to randomly die. Also though the temp isnt "too high" maybe the kill switch is set low? And I doubt this applies but I've met people who aimed space heaters at themselves and their computers
  2. I like to remove the PUO's and whatnot, you need to first 'decrypt' the dvd in order to do this. http://www.doom9.org/index.html?/guides.htm 1) DVD Decrypter 2) Clonedvd + Anydvd 3) DVD Shrink
  3. id bet your speed problem IS norton! Seriously. Not only is it 'poor' at virus detection, it the clunkiest software i know of next to aol. Disabling services will speed up your boot and use less resources while your pc is on. Blackviper (use google) has a good explanation of these and a list of reccomended settings. Was the SP2 update slipstreamed? otherwise ive noticed it slows things down, slipstreaming it though has no affect on system performance according to many users, including myself.
  4. it installs with an MSI, its just burried within several folders on the CD, if I remeber right.
  5. direct download link (sorta): http://www.msfn.org/board/index.php?showto...70entry234804
  6. what model hard drive is it? Ive seen/heard of this so many times, ugh . btw is it a SATA drive?
  7. ive had no luck getting this slipstreamed either. for now im using runonceex. REG ADD %KEY%\001 /VE /D "Media Center Edition 2005 with HDTV Support Update Rollup 1 (KB873369)" /f REG ADD %KEY%\001 /V 1 /D "%CDROM%\Software\windowsxpmediacenter2005-kb873369-enu.exe /q /o /n /z" /f
  8. why dont we use torrents for these sort of things?
  9. i remeber the days when I had to use spybot and adaware because "crap" would get installed on users machines through Internet Explorer and AOL, those were the dark days. now I use Firefox to surf the web, no more spyware EVER! yadda yadda yadda. Stop wasting your valuable time, use Firefox.
  10. I had a VAIO laptop, I'm glad I sold the thing. Sony was terrible with drivers, and support overall imo. Backlight/Inverter died after about a year and a half, $150 to have it repaired in NJ (sony wanted $600!). Got it fixed, sold it, and bought a nice desktop with the moola and never looked back B)
  11. Daemon Can be installed completely silently, NOT in runonceex.cmd though. cmdlines.txt [COMMANDS] "daemontools.cmd" "REGEDIT /S regtweaks.reg" "RunOnceEx.cmd" daemontools.cmd cmdow @ /HID @echo off for %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%a:\win51ip.SP2 set CDROM=%%a: START /wait %CDROM%\Software\Daemon347.msi /quiet /passive /qn /norestart REBOOT=ReallySuppress EXIT That will do it.
  12. EASY. Download Bâshrat the Sneaky's DriverPack MassStorage. Use Method 1. Tada. Well, go check it out and tell us how it goes. However it looks like he got hit with the webworm from google.
  13. dotnetfx is garbage, ive been deleting it for months without problems. you can also delete the win9x folders in I386 if you dont use the cd to upgrade from earlier versions of winodows.
  14. Associate Exta Media Types with Windows Media Player. Below is the contents of WMP_AssociateFiletypes.reg and WMP_AssociateFiletypes.cmd, they both do the same job. The advantage to using RegTweaks is if applied early in setup it will apply to all windows user accounts. WMAfile designates an extension as "Windows Media Audio File" ASFFile designates an extension as "Windows Media Audio/Video File" .REG Version Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.3gp] @="ASFFile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.3gp] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ape] @="WMAfile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ape] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.flac] @="WMAfile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.flac] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.mov] @="ASFFile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.mov] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.mpc] @="WMAfile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.mpc] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ogg] @="WMAfile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ogg] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.qt] @="ASFFile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.qt] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ra] @="WMAfile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ra] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ram] @="ASFFile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ram] "Runtime"=dword:00000001 "Permissions"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.rm] @="ASFFile" [HKEY_CURRENT_USER\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.rm] "Runtime"=dword:00000001 "Permissions"=dword:00000001 .CMD Version @echo off cmdow @ /HID M Short %PF% Variable FOR %%A IN ("%PROGRAMFILES%") DO SET SHORTPF=%%~sA REM APE, FLAC, MPC, OGG REG ADD "HKLM\SOFTWARE\Classes\.ape" /VE /D "WMAfile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ape" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ape" /v "Permissions" /t REG_DWORD /d 1 /f REG ADD "HKLM\SOFTWARE\Classes\.flac" /VE /D "WMAfile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.flac" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.flac" /v "Permissions" /t REG_DWORD /d 1 /f REG ADD "HKLM\SOFTWARE\Classes\.mpc" /VE /D "WMAfile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.mpc" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.mpc" /v "Permissions" /t REG_DWORD /d 1 /f REG ADD "HKLM\SOFTWARE\Classes\.ogg" /VE /D "WMAfile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ogg" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ogg" /v "Permissions" /t REG_DWORD /d 1 /f REM Real REG ADD "HKLM\SOFTWARE\Classes\.ra" /VE /D "WMAfile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ra" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ra" /v "Permissions" /t REG_DWORD /d 1 /f REG ADD "HKLM\SOFTWARE\Classes\.rm" /VE /D "ASFFile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.rm" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.rm" /v "Permissions" /t REG_DWORD /d 1 /f REG ADD "HKLM\SOFTWARE\Classes\.ram" /VE /D "ASFFile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ram" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.ram" /v "Permissions" /t REG_DWORD /d 1 /f REM Quicktime REG ADD "HKLM\SOFTWARE\Classes\.3gp" /VE /D "ASFFile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.3gp" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.3gp" /v "Permissions" /t REG_DWORD /d 1 /f REG ADD "HKLM\SOFTWARE\Classes\.mov" /VE /D "ASFFile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.mov" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.mov" /v "Permissions" /t REG_DWORD /d 1 /f REG ADD "HKLM\SOFTWARE\Classes\.qt" /VE /D "ASFFile" /F REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.qt" /v "Runtime" /t REG_DWORD /d 1 /f REG ADD "HKCU\SOFTWARE\Microsoft\MediaPlayer\Player\Extensions\.qt" /v "Permissions" /t REG_DWORD /d 1 /f
  15. This post has what you need to be able to play APE, FLAC, OGG, MPC, Quicktime and Real media files in WMP10. First you need the directshow filters, which you can download below. For Quicktime and Realmedia you will also have to download Real Alternative and Quicktime Alternative. Second if you want to register these media types to open with WMP10 just scroll down to the second post to see how. DOWNLOAD: UPDATE: CoRoNe has put together a comprehensive Directshow Filter Pack! Relevant Threads: SiMoNsAyS: Registering Extensions Unattended swgreed: Unattended Codec Pack for Video Formats
  16. you can always drag and drop hotfixes into nlite and it will slipstream them, the easiest way to do this imo. no other work to do.
  17. i didnt check it, but i like the math.
  18. A usefull program i've used for a little while. It came in handy when I wanted to remove unwanted entries in the context menu. No Installer or reg entries, just a clean exe file. It also gives the CLSID so you can make regtweaks from it. B) http://www.snapfiles.com/get/shellexview.html
  19. nice, what case is that?
  20. Ok so I got the 7.0 Basic, extracted the MSI and CAB file, used this switch and it installed silently: REG ADD %KEY%\010 /VE /D "Adobe Reader 7.0 Basic" /f REG ADD %KEY%\010 /V 1 /D "%CDROM%\Software\Adobe\AdobeReader7.msi TRANSFORMS=Adobe_Reader_7.0.mst /qb-" /f I used the MST posted but I DO see a Yahoo "Search the Internet" Button, the regtweak below hides it, but after closing and reopening a few times it reappeared. Can the Yahoo Seach NOT be installed? Also how are people creating MST files for these? Pardon me but I only know how to do that with Office? Windows Registry Editor Version 5.00 ;Adobe Reader 7 - Hide Yahoo Search Button [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\7.0\AVGeneral\cToolbars\cWebSearchView\cPositions\cInternal] "bHidden"=dword:00000001 "iDockPosition"=dword:00000000 "iLayout"=dword:00000000 "iOffset"=dword:00000000 "iOrder"=dword:00000000 "iStack"=dword:00000000 "bWindowHidden"=dword:00000000 [HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Acrobat Reader\7.0\FeatureLockdown] ; "bEFIPrintMe"= Remove the "PrintMe Internet Printing" menu item on File menu. "bEFIPrintMe"=dword:00000000 ; "bPurchaseAcro"= DISABLE (NOT remove) the "Purchase Adobe Acrobat" menu item under Help menu. "bPurchaseAcro"=dword:00000000 ; "bShowEbookMenu"= Remove the "Digital Editions" menu item on File menu. "bShowEbookMenu"=dword:00000000 ; "bUpdater"= Remove the "Check for updates now..." menu item under Help menu. "bUpdater"=dword:00000000 ; "bShowAdsAllow"= Remove the Ad box. "bShowAdsAllow"=dword:00000000 [EDIT] @Joe User 99 Thanks! The "Remove Ad Box tweak seems to get rid of it, Thanks.
  21. So adobe releases 6.03 and then throws out 7.0 overnight. sheesh. Does the MST in this thread do anything for the 7.0 Basic Version? I downloaded the basic install and extracted the msi and cab, do i need anything else before i try my next unattended?
  22. The most disurbing flash series imo, the problem is i watched 1 and wondered how screwed up the rest were. one thing i was wondering is where he got such creepy strange music from? (i didnt read the credits) I reccomend watching something else with your time, this stuff is just sick.
  23. Windows XP MCE 2005 SMB Server 2003 Standard.
  24. Slyck - File Sharing News and Info http://www.slyck.com/
  25. maybe this program? http://www.httrack.com/
×
×
  • Create New...