Jump to content

dll32

Member
  • Posts

    23
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    country-ZZ

Everything posted by dll32

  1. It was the NetBT service! I probably mistook the service in thought that it was the tcp netbios helper service witch I know i do not need. Very appreciated! Anyway, shouldn't nlite give some kind of information about this when I have "DHCP functionality" checked? Or isn't services checked for compatibility at all? And yes, the virtual machine has a network card
  2. I can't detect the source of this problem, realy irritating! And I have the "DHCP functionality" checked in the compatibility window, so it should work. I'm using a swedish source with sp3 slipstreamed (not slipstreamed with nlite). And haven't had any problems with it before. Tested in the newest version of virtualbox (2.0.4). Help is really appreciated Last_Session.ini
  3. I can't get swedish to work, it just restarts when I enter the language...
  4. Fast one here: how to use "Tweaked" when integrating with nLite? If it's possible...
  5. I would recommend Virtual CloneDrive, it's freeware too, and works realy good I think it's a bit faster than DeamonTools, and it can associate ISOs so you can open them directly. Hope you like it!
  6. Here you go Windows Registry Editor Version 5.00 ; Automatic logon for Windows. ; Replace InsertName value with the Username you want to autologin with. ; Replace InsertPassword value with the password corresponding to the Username specified. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] "DefaultUserName"="InsertName" "DefaultPassword"="InsertPassword" "AutoAdminLogon"="1"
  7. This is "setup.ini" BootOption is in "setup.iss"
  8. Sorry about that then I must have missed that when I tested it! Anyway, now i know how to do it myself, what good that might be for...
  9. You shouldn't have any problems if you know how to handle a virtual environment
  10. Great guide! I just thought it would be nice to share my idea that just struck me. I needed my addon to get a smaller final size to fit in my XPCD. My Office CD is in swedish so I couldn't use the "office shrinker". Here's what I did: 1. Copy the Office2003 setup folder (after nr. 4 in post 1) to a shared folder that you use with your virtual environment (virtualbox, vmware...) 2. Install Office2003 from the setup folder in your shared folder (using the commands described in (5) in post 1) in your virtual environment. 3. When the install is complete, search for all files (*.*) in the Office2003 setup folder and check the last accessed time on the files. 4. Delete all files that weren't accessed at the time of the Office2003 install! 5. Continiue at (5) in post 1! Tested and working! My addon just shrunk from 206mb to 112mb! Edit: The addon worked flawlessly Edit2: Tried to clear things out, my writing sucks
  11. Thanks!! Now I don't have to do this myself
  12. I've done some more test's with nLite and I cannot get autologon to work with a blank password, there's even an infobox where i can read that it doesn't work with blank passwords. So my question is: How did you do to make autologon with a blank password work in nLite? Anyhow, you may make autologon work in the ugly way, by adding: set KEY=HKLM\Software\Microsoft\Windows\CurrentVersion\Run REG ADD "%KEY%" /f /v "AutoAdminLogon" /d "cmd /c REG ADD \"HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\" /f /v \"AutoAdminLogon\" /d \"1\"" But I suppose you have already thought about this?
  13. I want to know if autologon with blank password in win 2000 is possible too! Are you sure that nLite can handle autologon, my conclusion was that it couldn't. If it works for you, you may be able to just rename the built-in admin account and use that account instead. Anyway... I have done some tests to try to get it to work, eg. with the ForceAutoLogon key. but no success yet
  14. I had problems with this too for quite some time, the problem is that you MUST define a password for autologon otherwise it will just autologon one time and then reset the AutoAdminLogon key. Hope this works for you!
  15. Yes i did! Then i'm waiting for v1.3 then
  16. I cant seem to find any documentation on how to specify InstallPath as a parameter on the exe, is it possible? If not, is there any alternative way?
  17. I made some experiments and found that it is not a bug of the module. I found a description of such problems for Inno Setup. Read this I do not know how to solve this problem Thanks for the clarification and thanks for trying, now I at least know what's causing it. By the way... I just got an idea, i might just put the installer within another installer, that extract the installer silently and then executes it. // dLL32
  18. I'm not changing the icon of the module, or using any kind of compression except for 7-zip. I got a question now to: is it possible to specify two archives when creating the exe? eg. copy /b 7zs.sfx + config.txt + archive1.7z + archive2.7z (Installer_Name).exe
  19. I got a problem with the icon of the exe when the size of the archive is bigger than ~700mb. The problem is that the icon gets replaced to the boring "white rectangle". Is this a bug with 7zSD? If it's a known bug, is there any way to prevent it?
  20. Here's how I choose my username at install and I do skip OOBE! My method uses "Registered owner" that you specify at the start of install and then renames the Admin-account with the specified name It will probably just work with classic install in CMDLINES.TXT add "renameAdmin.cmd" "renameAdmin.cmd" ------------------------------ cmdow @ /HID @echo off :: exports the RegisteredOwner key FOR /F "tokens=2* delims= " %%A IN ('REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v RegisteredOwner') DO SET RegisteredOwner="%%B" :: rename the administratoraccount renuser Administrator %RegisteredOwner% :: Make the renamed administratoraccount Always Visible on the Login Screen REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /f /v %RegisteredOwner% /t REG_DWORD /d 00000001 ------------------------------------
  21. I use WinXp Pro, that might be the reason the admin tweak doesn't work for you I've missed that you wanted tweaks for the classic start menu, so here you have the tweak for small icons: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2] for big "Settings"=hex:28,00,00,00,ff,ff,ff,ff,02,00,00,00,03,00,... for small "Settings"=hex:28,00,00,00,ff,ff,ff,ff,06,00,00,00,03,00,... about the documents i don't know
  22. Here's the start menu tweaks I use: ; Start Menu ; --------------------------------------------------- ; Start menu Items: Hide/Show/Cascade. ; dword: 00000000= Don't display ; dword: 00000001= Display as a link (Default) ; dword: 00000002= Display as a menu (Cascade) ; Show My Documents [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Start_ShowMyDocs"=dword:00000001 ; Show My Music [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Start_ShowMyMusic"=dword:00000001 ; Show My Pictures [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Start_ShowMyPics"=dword:00000001 ; removes the recent documents from the start menu. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] "NoRecentDocsMenu"=dword:00000001 ; Set icon size for start menu , 1 = Large / 0 = Small Icons ; Note: Value set to 0 (Small Icons) [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Start_LargeMFUIcons"=dword:00000000 and for QuickLaunch: ; Enable "Quick Launch Bar" right at first logon [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop] "TaskbarWinXP"=hex:0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,\ d8,64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,01,00,00,1a,00,00,00,\ 01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,\ 00,00,00,c0,00,00,00,00,00,00,46,83,00,00,00,10,00,00,00,a0,b0,48,5e,89,8d,\ bd,01,00,d8,9e,e4,2a,8d,bd,01,00,45,fe,5e,89,8d,bd,01,00,00,00,00,00,00,00,\ 00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,13,01,14,00,1f,0f,e0,4f,\ d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,23,44,3a,5c,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,cd,97,15,00,31,00,00,00,00,00,af,24,5c,\ b9,10,80,57,69,6e,6e,74,00,00,20,00,31,00,00,00,00,00,af,24,a3,b9,10,00,50,\ 72,6f,66,69,6c,65,73,00,50,52,4f,46,49,4c,45,53,00,19,00,31,00,00,00,00,00,\ c1,24,08,92,10,00,69,65,35,30,30,2e,30,30,30,00,00,28,00,31,00,00,00,00,00,\ c1,24,08,92,10,00,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,00,41,50,\ 50,4c,49,43,7e,31,00,21,00,31,00,00,00,00,00,c5,22,9d,91,10,00,4d,69,63,72,\ 6f,73,6f,66,74,00,4d,49,43,52,4f,53,7e,31,00,29,00,31,00,00,00,00,00,d3,22,\ 32,a6,10,00,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,00,49,4e,54,\ 45,52,4e,7e,31,00,24,00,31,00,00,00,00,00,db,22,76,ba,10,00,51,75,69,63,6b,\ 20,4c,61,75,6e,63,68,00,51,55,49,43,4b,4c,7e,31,00,00,00,8d,00,00,00,1c,00,\ 00,00,01,00,00,00,1c,00,00,00,36,00,00,00,0d,f0,ad,ba,8c,00,00,00,1a,00,00,\ 00,03,00,00,00,e7,18,2d,23,10,00,00,00,49,45,35,30,30,5f,58,31,43,00,43,3a,\ 5c,57,49,4e,4e,54,5c,50,72,6f,66,69,6c,65,73,5c,49,45,35,30,30,2e,30,30,30,\ 5c,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,5c,4d,69,63,72,6f,73,6f,\ 66,74,5c,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,5c,51,75,69,63,\ 6b,20,4c,61,75,6e,63,68,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,a3,00,00,\ 00,00,00,00,00,08,00,00,00,02,00,00,00,cc,00,00,00,01,00,00,00,03,00,00,00,\ 4a,00,00,00,01,00,00,00,40,00,32,00,e6,01,00,00,c4,24,15,9f,20,00,4c,61,75,\ 6e,63,68,20,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,20,42,72,6f,\ 77,73,65,72,2e,6c,6e,6b,00,4c,41,55,4e,43,48,7e,32,2e,4c,4e,4b,00,00,00,40,\ 00,00,00,02,00,00,00,36,00,32,00,48,02,00,00,c4,24,15,9f,20,00,4c,61,75,6e,\ 63,68,20,4f,75,74,6c,6f,6f,6b,20,45,78,70,72,65,73,73,2e,6c,6e,6b,00,4c,41,\ 55,4e,43,48,7e,31,2e,4c,4e,4b,00,00,00,36,00,00,00,00,00,00,00,2c,00,32,00,\ 51,00,00,00,ec,22,46,39,20,00,53,68,6f,77,20,44,65,73,6b,74,6f,70,2e,73,63,\ 66,00,53,48,4f,57,44,45,7e,31,2e,53,43,46,00,00,00,52,00,00,00,e0,00,00,00,\ 00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,01,\ 00,00,00,01,00,00,00,aa,4f,28,68,48,6a,d0,11,8c,78,00,c0,4f,d9,18,b4,37,02,\ 00,00,e0,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,\ 00,00,00,00,00,01,00,00,00 for 1, i use the same one as you, and it works for me on my virtual environment if that might help, i use virtualbox, www.virtualbox.org
×
×
  • Create New...