PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Gothic 2 extractor



Larisa
31.10.2009, 01:09
Gothic 2 extractor is an alternative for installing G2.

In case you get a "math64.dll" or an "Insufficient Memory" error when you try to install Gothic 2, here's a possible solution: use the batch installer provided here.

So far the scripts work only with:

G2 on 3CDs in English
G2 on 3CDs in English (another variant)
G2 on DVD in English
G2 Gold on 4CDs in English
G2 Gold on DVD in English


How it works: it will copy the files from the optical media onto your hard drive, it will create the G2 folder structure, extract the files from archives, move each file where it belongs and delete the leftovers.

It doesn't make shortcuts and it doesn't write in the registry.

Right now it does some error checking, but it's still possible to encounter problems, so if one step of the script doesn't work as it should, it won't always exit gracefully (which will probably result in more errors). But it's safe, it won't screw your system (no guarantees though :D ).


Here's the file: click me (http://upload.worldofplayers.de/files5/G2extra12.zip)

Installation: unpack the archive, put the G2 disk in the drive, launch the matching *.cmd file and follow the on-screen instructions.

Vampirelle
31.10.2009, 03:02
I just wish I knew computers like you do. Great job, every single time.
Girl power! §xlol :D

Larisa
01.11.2009, 11:49
I just wish I knew computers like you do. Great job, every single time.

Thanks. :) I wish I knew computers better, it took me 2 hours yesterday just to figure out 2 if-else statements.


Does somebody know why NotR's setup launches delsaves.exe when it finishes copying the files? What exactly does it do? Deletes savegames? Why? Is it important to be done at install time?
Also it launches that vdfs tool "please wait while vdfs creates...."
Again, is it important to be run at install time and not when the game firsts starts?

Korianous
01.11.2009, 14:23
My guesses:

- Getting rid of incompatible save files that may cause issues.
- Ensuring that the VDFS system is initialized and the files have been installed correctly.

EDIT/PS: Larisa, this should be in the Downloads Section, excellent work ;). I'll see if we can't get it officially hosted.

Larisa
02.11.2009, 19:12
EDIT/PS: Larisa, this should be in the Downloads Section, excellent work ;). I'll see if we can't get it officially hosted.

Thanks, but not so fast, I still want to finish the notr part and then adapt it for the 4 cds version.


Do you know what vssver.scc files are for? A lot of those in _work\Data\Scripts\system\*

Each one different from the other :(

The installer, being an idiot, overwrites the files when extracted with /x, so I have only one vssver.scc and I need like 9 different copies. No option to autorename if file already exists.
So, important or not? Can be generated?

Korianous
03.11.2009, 02:43
Visual Source Safe files? That's a relic from VS 6.0 days, it's Version Control software. Idk if anyone actually uses that in the industry these days (outside of Microsoft). The PBs use Perforce now, as I'm sure many others do.

To cap off that minor tangent, I don't know why your installer would be looking for those files :dnuhr:, especially in the script path.

Larisa
03.11.2009, 06:45
I don't know why your installer would be looking for those files :dnuhr:, especially in the script path.

I don't know either, the thing is that the NotR setup has them in it's belly and puts them there.
Are they used by the game? Or for something else? Can I safely ignore and not copy them?

Korianous
03.11.2009, 16:32
I don't know either, the thing is that the NotR setup has them in it's belly and puts them there.
Are they used by the game? Or for something else? Can I safely ignore and not copy them?

They shouldn't be used in the game, no. My guess is that it would be safe to ignore them.

Larisa
04.11.2009, 02:28
New and improved version! Big feature: new color for text. And it also supports NotR now.

Link (http://upload.worldofplayers.de/files4/G2extra06.zip).

Ranting/musings: now everything appears to be in order, launched the game without the scc files, works fine. :)
I've decided the script shouldn't create the vdfs.dmp file, it's done anyway when launching the game if it doesn't exist, and if the user moves the folder somewhere else it will be recreated again, so no need for it.
Also, no need for delsaves.exe, since at the time when the script is run, there are no G2 vanilla savegames yet.

I wanted to add some features, like auto detect free space and act accordingly. However, the console doesn't do arithmetic with anything above 32bit numbers, and since the free space in bytes can be well above 4billions... I've had to just display the free space and the required space, let the user do the thinking.
I'll try some error management in case the disk isn't inserted or wrong disk.

Now I'll have to adapt it for the CD version, which should be fairly easy if there are no file differences inside the archives.

I remember something about the Universe edition not being able to install just g2, without notr... If we're lucky and it's just something from wise installer's compiled script and the archives contain g2 and notr files separately, I could make it install just G2. Remains to be seen.

Korianous
04.11.2009, 05:13
Larisa, I could try and code an installer with your batch file, should you wish to get past some of that stuff. Need some little practical application work anyway. Given my latest Ubuntu discovery and out of desire to keep it simple, it'll still be a console app.

Larisa
06.11.2009, 00:54
Well, except that free space auto selection, the script does so far everything I wanted.
I though too about a compiled tool, but, excepting the fact that I know nothing about programming languages, I had to give up the idea because:
-simplicity: just 1 file, no external stuff (I've found some tools for extracting the wise packages, but if /x is enough to skip the errors (remains to be seen), why should I complicate myself?)
and there is a solution with vbscript files and windows scripting host or something, but again, so far I've managed without it.
-I wanted to avoid registry and links (because of special folders like documents&settings), game runs fine without them (without registry entries probably other programs won't auto-find G2's folder, but that's why there's a browse button)
-making sure the program is compatible with vista and 7, maybe the user has to have the necessary libraries (.net or c++ stuff, I don't really know much about this), I hope dir, md and move are still present in win 7 :)

But that's no reason not to try if you need the practice. :D


And now, version 0.7 (http://upload.worldofplayers.de/files4/G2extra07.zip). New: the script checks if the necessary files exist on the dvd and have the right size. Basically, a way to fine tune it to the g2 variant that I've tested and to avoid possible errors if used with other g2 flavors.


EDIT: new version 0.8. Now it supports a 4 cds variant.
Link (http://upload.worldofplayers.de/files4/G2extra08.zip).

Korianous
08.11.2009, 21:39
-making sure the program is compatible with vista and 7, maybe the user has to have the necessary libraries (.net or c++ stuff, I don't really know much about this), I hope dir, md and move are still present in win 7 :)


Fear not. All it would be is a console-based installer, it would run much as a batch script would, as far as laymen are concerned. It only allows for a bit more interactivity ;).

Larisa
09.11.2009, 00:42
New update (http://upload.worldofplayers.de/files4/G2extra09.zip).
0.9 brings support for a G2 vanilla on DVD and some error management in case of unsuccessfully copied files.


Fear not. All it would be is a console-based installer, it would run much as a batch script would, as far as laymen are concerned. It only allows for a bit more interactivity ;).

Then get busy. :D



Someone with a non EN Windows reading this? I'm curious if the commands are translated or still in English. For example, on a German Windows, does dir shows "freien Bytes" or "free bytes"?

Dimus
09.11.2009, 08:06
To make it work with other versions (the ones on CDs, universe edition, other languages, etc.) I need your help: to test the scrip with Vista and Win 7 (preferably with UAC on (if it work with ON, it will work with OFF also, I guess)) and to copy paste here a list with the contents of your G2&notr disks (DVD or CDs), with a command like this: dir /s /og > c:\list.txt
There are contents of russian versions of Gothic II (localized by Akella (http://www.akella.com)).
Gothic II (vanilla, built on base of english version 1.31, 3 CDs set).
CD #1:
Том в устройстве D имеет метку GOTHIC2_CD1
Серийный номер тома: F7E8-DEDA

Содержимое папки D:\

07.12.2004 15:39 <DIR> video
07.12.2004 15:39 <DIR> rus
15.05.2000 13:08 134•656 Setup.exe
07.12.2004 05:04 81 Setup.ini
16.11.2004 06:39 1•654•784 autorun.exe
15.11.2004 21:38 68 AutoRun.inf
07.12.2004 05:05 32•874 data1.hdr
07.12.2004 05:06 398•864•384 data2.cab
25.07.2002 21:07 346•602 ikernel.ex_
07.12.2004 05:09 505 layout.bin
07.12.2004 05:05 437•435 data1.cab
07.12.2004 05:04 142•847 setup.inx
22.01.2003 07:30 766 AutoRun.ico
11 файлов 401•615•002 байт

Содержимое папки D:\rus

07.12.2004 17:36 <DIR> ..
07.12.2004 15:39 <DIR> Data
07.12.2004 15:39 <DIR> _work
07.12.2004 15:39 <DIR> System
07.12.2004 15:39 <DIR> .
24.11.2004 17:41 11•457 ReadMe.txt
22.01.2003 04:30 97 Gothic2.url
26.09.2003 17:05 48 akella.url
02.02.2004 14:29 1•919 Техподдержка.txt
4 файлов 13•521 байт

Содержимое папки D:\rus\Data

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
07.12.2004 04:57 13•805•653 Textures_Fonts_Apostroph.vdf
1 файлов 13•805•653 байт

Содержимое папки D:\rus\System

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 03:30 377•856 BinkW32.dll
22.01.2003 03:30 32•827 BugslayerUtil.dll
22.01.2003 03:30 573•952 GeDialogs.dll
24.04.2003 22:00 19•215 Gothic.INI
07.12.2004 14:56 4•030•524 Gothic2.exe
22.01.2003 03:30 85•264 ImageHl2.dll
22.01.2003 03:30 35•088 KillHelp.exe
22.01.2003 03:30 94•208 MallocWin32Debug.dll
22.01.2003 03:30 102•672 MsDbi.dll
22.01.2003 03:30 349•696 Mss32.dll
22.01.2003 03:30 1•269 Paths.d
22.01.2003 03:30 56•832 Reverb3.flt
22.01.2003 03:30 124•656 Shw32.dll
23.04.2003 21:36 93•696 Vdfs32e.dll
26.11.2004 06:48 45•056 Vdfs32e.exe
24.04.2003 17:37 876•544 ar.exe
07.12.2004 14:56 6•081•899 protect.dll
07.12.2004 15:12 196•608 protect.msg
18 файлов 13•177•862 байт

Содержимое папки D:\rus\_work

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> Data
07.12.2004 15:39 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\Data

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> Scripts
07.12.2004 15:39 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\Data\Scripts

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> Content
07.12.2004 15:39 <DIR> System
07.12.2004 15:39 <DIR> _compiled
07.12.2004 15:39 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\Data\Scripts\Content

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> Cutscene
07.12.2004 15:39 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\Data\Scripts\Content\Cutscene

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 5•449•906 OU.csl
07.12.2004 04:36 4•506•399 OU.bin
2 файлов 9•956•305 байт

Содержимое папки D:\rus\_work\Data\Scripts\System

07.12.2004 15:39 <DIR> .
07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> Camera
07.12.2004 15:39 <DIR> VisualFx
07.12.2004 15:39 <DIR> Menu
07.12.2004 15:39 <DIR> Sfx
07.12.2004 15:39 <DIR> Music
07.12.2004 15:39 <DIR> _intern
07.12.2004 15:39 <DIR> Pfx
22.01.2003 04:30 418 Menu.src
22.01.2003 04:30 51 Sfx.src
22.01.2003 04:30 38 Camera.src
22.01.2003 04:30 45 VisualFx.src
22.01.2003 04:30 36 Music.src
22.01.2003 04:30 76 ParticleFx.src
6 файлов 664 байт

Содержимое папки D:\rus\_work\Data\Scripts\System\Camera

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 12•947 CamInst.d
1 файлов 12•947 байт

Содержимое папки D:\rus\_work\Data\Scripts\System\Menu

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 2•079 Menu_Defines.d
22.01.2003 04:30 5•791 Menu_Log.d
22.01.2003 04:30 5•418 Menu_Main.d
22.01.2003 04:30 1•646 Menu_Misc.d
22.01.2003 04:30 5•303 Menu_Opt.d
22.01.2003 04:30 10•438 Menu_Opt_Audio.d
22.01.2003 04:30 26•675 Menu_Opt_Controls.d
22.01.2003 04:30 9•978 Menu_Opt_Ext.d
22.01.2003 04:30 10•982 Menu_Opt_Game.d
22.01.2003 04:30 6•542 Menu_Opt_Graphics.d
22.01.2003 04:30 6•405 Menu_Opt_Video.d
22.01.2003 04:30 25•443 Menu_Savegame.d
22.01.2003 04:30 19•037 Menu_Status.d
13 файлов 135•737 байт

Содержимое папки D:\rus\_work\Data\Scripts\System\Music

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 28•280 MusicInst.d
1 файлов 28•280 байт

Содержимое папки D:\rus\_work\Data\Scripts\System\Pfx

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 189•107 Pfx.d
22.01.2003 04:30 247•330 PfxMagic.d
22.01.2003 04:30 3•941 ParticleFxEngine.d
3 файлов 440•378 байт

Содержимое папки D:\rus\_work\Data\Scripts\System\Sfx

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 12•404 SfxInstSpeech.d
22.01.2003 04:30 167•641 SfxInst.d
2 файлов 180•045 байт

Содержимое папки D:\rus\_work\Data\Scripts\System\VisualFx

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 104•694 VisualFxInst.d
1 файлов 104•694 байт

Содержимое папки D:\rus\_work\Data\Scripts\System\_intern

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 4•528 Menu.d
22.01.2003 04:30 2•686 Music.d
22.01.2003 04:30 3•581 ParticleFxDef.d
22.01.2003 04:30 2•083 Sfx.d
22.01.2003 04:30 4•347 VisualFx.d
22.01.2003 04:30 1•902 Camera.d
6 файлов 19•127 байт

Содержимое папки D:\rus\_work\Data\Scripts\_compiled

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 7•750 Camera.dat
22.01.2003 04:30 37•070 Fight.dat
07.12.2004 04:35 5•535•570 Gothic.dat
22.01.2003 04:30 10•779 Music.dat
22.01.2003 04:30 3•057•173 OuInfo.inf
22.01.2003 04:30 515•749 ParticleFx.dat
22.01.2003 04:30 223•124 Sfx.dat
22.01.2003 04:30 126•673 VisualFx.dat
07.12.2004 04:35 130•151 menu.dat
9 файлов 9•644•039 байт

Содержимое папки D:\video

07.12.2004 17:36 <DIR> ..
07.12.2004 15:39 <DIR> _work
07.12.2004 15:39 <DIR> .
0 файлов 0 байт

Содержимое папки D:\video\_work

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> Data
07.12.2004 15:39 <DIR> .
0 файлов 0 байт

Содержимое папки D:\video\_work\Data

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> Video
07.12.2004 15:39 <DIR> .
0 файлов 0 байт

Содержимое папки D:\video\_work\Data\Video

07.12.2004 15:39 <DIR> ..
07.12.2004 15:39 <DIR> .
22.01.2003 04:30 37•935•740 Credits.bik
22.01.2003 04:30 58•824•680 Credits2.bik
22.01.2003 04:30 19•777•544 Credits_Extro.bik
17.11.2004 17:22 11•294•764 DragonAttack.bik
17.11.2004 17:22 6•070•052 Extro_AllesWirdGut.bik
22.01.2003 04:30 15•962•436 Extro_DJG.bik
22.01.2003 04:30 15•815•896 Extro_KDF.bik
22.01.2003 04:30 16•229•264 Extro_PAL.bik
17.11.2004 17:19 12•042•124 Extro_Xardas.bik
22.01.2003 04:30 4•879•444 FishFood.bik
17.11.2004 17:17 27•105•484 Intro.bik
22.01.2003 04:30 6•178•996 Logo1.bik
22.01.2003 04:30 3•142•420 Logo2.bik
22.01.2003 04:30 7•814•036 LoveScene.bik
17.11.2004 17:40 9•368•216 OrcAttack.bik
22.01.2003 04:30 15•263•332 Ship.bik
16 файлов 267•704•428 байт

Всего файлов:
94 файлов 716•838•682 байт
63 папок 0 байт свободно

CD #2:
Том в устройстве D имеет метку GOTHIC2_CD2
Серийный номер тома: 80D6-CB65

Содержимое папки D:\

07.12.2004 05:08 727•654•400 data3.cab
1 файлов 727•654•400 байт

Всего файлов:
1 файлов 727•654•400 байт
0 папок 0 байт свободно

CD #3:
Том в устройстве D имеет метку GOTHIC2_CD3
Серийный номер тома: E4CC-CACB

Содержимое папки D:\

07.12.2004 05:14 <DIR> DirectX81
14.11.2004 15:48 220 AutoRun.inf
07.12.2004 05:09 694•690•428 data4.cab
22.01.2003 06:30 766 AutoRun.ico
3 файлов 694•691•414 байт

Содержимое папки D:\DirectX81

07.12.2004 05:30 <DIR> ..
07.12.2004 05:14 <DIR> .
22.01.2003 06:30 562•193 BDA.cab
22.01.2003 06:30 562•548 BDANT.cab
22.01.2003 06:30 35•328 DSETUP.dll
22.01.2003 06:30 14•382•314 DirectX.cab
22.01.2003 06:30 41•984 cfgmgr32.dll
22.01.2003 06:30 1•901•056 dsetup32.dll
22.01.2003 06:30 9•884•799 dxnt.cab
22.01.2003 06:30 140•288 dxsetup.exe
22.01.2003 06:30 341•264 setupapi.dll
9 файлов 27•851•774 байт

Всего файлов:
12 файлов 722•543•188 байт
3 папок 0 байт свободно


Gothic II (NotR, built on base of german version 2.6, 2 CDs set).
CD #1:
Том в устройстве D имеет метку G2ADDON
Серийный номер тома: D87B-A534

Содержимое папки D:\

24.03.2005 20:07 <DIR> catalog cd
24.03.2005 20:08 <DIR> jwd
24.03.2005 20:08 <DIR> DIRECTX9b
24.03.2005 20:07 <DIR> Demki
24.03.2005 20:08 <DIR> rus
15.05.2000 13:08 134•656 Setup.exe
20.03.2005 04:33 95 Setup.ini
10.03.2005 22:51 1•454•080 autorun.exe
21.03.2005 19:30 140•982 Setup.Inx
20.03.2005 04:33 437•465 data1.cab
20.03.2005 04:33 36•484 data1.hdr
20.03.2005 04:35 511•504•384 data2.cab
25.07.2002 19:07 346•602 ikernel.ex_
30.07.2003 20:04 766 Autorun.ico
20.03.2005 04:37 461 layout.bin
11.03.2005 02:51 89 AutoRun.inf
11 файлов 514•056•064 байт

Содержимое папки D:\DIRECTX9b

24.03.2005 20:31 <DIR> ..
24.03.2005 20:08 <DIR> .
18.03.2003 07:16 695•962 BDA.cab
11.06.2003 03:33 1•149•019 BDANT.cab
11.06.2003 03:33 968•156 BDAXP.cab
02.06.2003 06:30 60•416 DSETUP.dll
25.06.2003 22:24 15•443•578 DirectX.cab
23.06.2003 20:47 1•978•368 dsetup32.dll
25.06.2003 22:06 13•160•291 dxnt.cab
02.06.2003 06:47 467•456 dxsetup.exe
8 файлов 33•923•246 байт

Содержимое папки D:\Demki

24.03.2005 20:07 <DIR> .
24.03.2005 20:31 <DIR> ..
24.03.2005 20:07 <DIR> files
24.03.2005 20:07 <DIR> images
23.05.2002 22:50 5•734 adventure1s.html
23.05.2002 22:50 6•515 adventure2.html
23.05.2002 22:50 5•726 adventure2s.html
23.05.2002 22:52 6•987 adventure3.html
23.05.2002 22:52 5•734 adventure3s.html
24.05.2002 19:30 6•621 adventure4.html
23.05.2002 22:52 5•725 adventure4s.html
23.05.2002 23:15 7•105 adventure5.html
24.05.2002 19:37 5•964 adventure5s.html
24.05.2002 19:11 5•546 arcade.html
29.05.2002 01:56 6•451 arcade1.html
23.05.2002 22:57 5•831 arcade1s.html
23.05.2002 22:50 6•394 adventure1.html
23.05.2002 22:57 6•383 arcade2s.html
23.05.2002 22:57 6•283 arcade3.html
23.05.2002 22:57 5•805 arcade3s.html
23.05.2002 22:57 7•845 arcade4.html
23.05.2002 22:57 5•809 arcade4s.html
23.05.2002 22:57 6•827 arcade5.html
23.05.2002 22:57 5•799 arcade5s.html
23.05.2002 22:57 6•585 arcade6.html
23.05.2002 22:58 6•384 arcade6s.html
23.05.2002 22:58 6•865 arcade7.html
23.05.2002 22:58 5•810 arcade7s.html
24.05.2002 02:04 4•499 child.html
16.05.2002 00:44 5•835 child1.html
16.05.2002 00:44 5•462 child1s.html
24.05.2002 02:03 5•336 adventure.html
23.05.2002 22:57 6•273 arcade2.html
24.05.2002 02:01 5•563 index.html
24.05.2002 19:13 4•409 logic.html
16.05.2002 00:44 5•856 logic1.html
16.05.2002 00:44 5•456 logic1s.html
17.04.2002 01:25 411 menu.css
30.05.2002 01:18 5•003 rpg.html
30.05.2002 01:18 7•003 rpg1.html
30.05.2002 01:18 5•642 rpg1s.html
30.05.2002 01:18 6•228 rpg2.html
30.05.2002 01:18 5•608 rpg2s.html
30.05.2002 01:18 5•608 rpg2v.html
30.05.2002 01:18 8•354 rpg3.html
30.05.2002 01:19 6•131 rpg3s.html
30.05.2002 01:19 5•898 rpg3v.html
30.05.2002 01:14 7•526 rpg4.html
30.05.2002 01:23 5•634 rpg4s.html
24.05.2002 19:12 5•786 strategy.html
16.05.2002 00:45 7•752 strategy1.html
16.05.2002 00:45 5•909 strategy1s.html
16.05.2002 23:03 6•988 strategy2.html
16.05.2002 00:45 5•939 strategy2s.html
16.05.2002 23:28 7•549 strategy3.html
16.05.2002 00:45 5•955 strategy3s.html
23.05.2002 23:20 7•560 strategy4.html
23.05.2002 23:21 6•468 strategy4s.html
25.05.2002 00:11 7•035 strategy5.html
25.05.2002 00:11 5•917 strategy5s.html
16.05.2002 23:31 7•280 strategy6.html
16.05.2002 00:45 5•919 strategy6s.html
16.05.2002 23:44 7•244 strategy7.html
16.05.2002 00:45 5•954 strategy7s.html
16.05.2002 23:49 7•168 strategy8.html
16.05.2002 00:45 5•944 strategy8s.html
62 файлов 380•830 байт

Содержимое папки D:\Demki\files

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
0 файлов 0 байт

Содержимое папки D:\Demki\images

24.03.2005 20:07 <DIR> .
24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> multimedia
03.12.2001 21:58 177 arrow-bottom.gif
03.12.2001 21:58 1•894 arrow-top.gif
26.10.2001 00:48 53 bg-bot.gif
26.10.2001 00:49 155 bot-button.gif
26.10.2001 00:49 123 bot-l-cubes.gif
16.04.2002 20:32 84•018 akella-demo copy.jpg
26.10.2001 00:49 113 bot-r-cubes.gif
26.10.2001 00:49 74 bot-right.gif
03.12.2001 22:43 247 copyright.gif
20.03.2002 20:48 67 left-bt.gif
16.04.2002 20:04 7•897 left.gif
03.12.2001 21:58 423 menu.gif
26.10.2001 00:49 73 bot-left.gif
03.12.2001 21:58 1•205 present.gif
20.03.2002 20:48 67 right-bt.gif
16.04.2002 20:04 7•835 right.gif
16.04.2002 20:05 68 texture.gif
16.04.2002 20:05 3•117 top.gif
23.08.2001 13:05 43 trans.gif
19 файлов 107•649 байт

Содержимое папки D:\Demki\images\multimedia

24.03.2005 20:07 <DIR> .
24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> preview
24.03.2005 20:07 <DIR> big
21.12.2001 23:01 19•254 aw.gif
27.04.2002 21:36 22•384 auryn.gif
27.02.2002 17:45 18•008 bloodaria.gif
02.11.2001 22:33 16•476 bsebomber-box.gif
11.04.2002 20:33 16•555 chicken.gif
18.02.2002 22:56 16•762 director.gif
22.04.2002 22:07 20•721 dragon.gif
17.12.2001 23:12 16•676 absolute.gif
11.02.2002 19:02 14•714 fairy.gif
26.02.2002 18:00 16•069 farwest.gif
22.05.2002 22:19 17•547 gothic2.gif
17.04.2002 00:21 16•974 hotel.gif
14.02.2002 21:07 16•423 jack.gif
23.01.2002 23:13 17•710 knight-cross.gif
04.04.2002 18:31 9•481 knightshift.gif
18.02.2002 22:00 11•045 pi2.gif
07.02.2002 23:59 17•232 pinball.gif
11.03.2002 21:02 17•561 ploing.gif
04.02.2002 23:06 13•000 evilkris.gif
20.10.1997 19:50 17•546 provincial-gamer.gif
09.04.2002 01:38 13•995 rabiddogs.gif
04.12.2001 00:21 17•210 solaris.gif
21.03.2002 23:24 18•478 starship.gif
20.11.2001 22:33 17•412 timoshka.gif
12.02.2002 19:32 15•181 worms.gif
02.04.2002 19:00 19•510 wwii.gif
20.10.1997 19:22 211 x.gif
27 файлов 434•135 байт

Содержимое папки D:\Demki\images\multimedia\big

24.03.2005 20:07 <DIR> .
24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> absolute
24.03.2005 20:08 <DIR> worms
24.03.2005 20:08 <DIR> tim
24.03.2005 20:07 <DIR> auryn
24.03.2005 20:07 <DIR> aw
24.03.2005 20:07 <DIR> bloodaria
24.03.2005 20:08 <DIR> starship
24.03.2005 20:08 <DIR> solaris
24.03.2005 20:07 <DIR> chicken
24.03.2005 20:08 <DIR> rabiddogs
24.03.2005 20:07 <DIR> df
24.03.2005 20:08 <DIR> ploing
24.03.2005 20:07 <DIR> dragon
24.03.2005 20:07 <DIR> evilkris
24.03.2005 20:08 <DIR> pinball
24.03.2005 20:07 <DIR> fairy
24.03.2005 20:07 <DIR> pi2
24.03.2005 20:07 <DIR> farwest
24.03.2005 20:07 <DIR> gothic
24.03.2005 20:07 <DIR> hotel
24.03.2005 20:07 <DIR> pi
24.03.2005 20:07 <DIR> jack
24.03.2005 20:08 <DIR> wwii
24.03.2005 20:07 <DIR> kc
24.03.2005 20:07 <DIR> madcow
24.03.2005 20:07 <DIR> knightshift
23.01.2002 23:12 163•765 knight-cross-bigbox.jpg
17.04.2002 00:19 145•457 hotel-bigbox.jpg
11.02.2002 19:02 304•931 fairy-bigbox.jpg
04.02.2002 23:05 232•703 evilkris-bigbox.jpg
07.02.2002 23:56 345•806 pinball-bigbox.jpg
18.02.2002 22:56 224•403 director-bigbox.jpg
11.03.2002 21:01 158•744 ploing2-bigbox.jpg
13.03.2002 21:20 187•374 privateer-bigbox-en.jpg
14.01.2002 22:06 111•099 privateer-bigbox.jpg
11.04.2002 20:33 143•957 chicken-bigbox.jpg
06.11.2001 20:57 164•887 seadogs-bigbox.jpg
06.11.2001 18:17 164•887 seadogs2-bigbox.jpg
02.11.2001 22:36 91•531 bsebomber-bigbox.jpg
04.12.2001 00:20 141•790 solaris104.jpg
27.02.2002 17:44 261•460 bloodaria-bigbox.jpg
21.03.2002 23:23 160•166 starship-bigbox.jpg
11.02.2002 17:38 176•264 aos2-bigbox-en.jpg
20.11.2001 22:32 180•687 timoshka.jpg
17.12.2001 23:12 77•921 absolute-bigbox.jpg
12.02.2002 19:31 311•098 worms-bigbox.jpg
14.02.2002 21:05 261•000 jack-bigbox.jpg
21 файлов 4•009•930 байт

Содержимое папки D:\Demki\images\multimedia\big\absolute

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:11 235•494 2.jpg
25.04.2002 23:10 184•433 3.jpg
25.04.2002 23:10 160•905 4.jpg
25.04.2002 23:11 118•601 1.jpg
4 файлов 699•433 байт

Содержимое папки D:\Demki\images\multimedia\big\auryn

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
27.04.2002 21:42 250•852 2.jpg
27.04.2002 21:42 199•736 3.jpg
27.04.2002 21:44 154•659 4.jpg
27.04.2002 21:42 248•203 1.jpg
4 файлов 853•450 байт

Содержимое папки D:\Demki\images\multimedia\big\aw

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:12 221•834 2.jpg
25.04.2002 23:12 234•675 3.jpg
25.04.2002 23:11 208•264 4.jpg
25.04.2002 23:12 219•701 1.jpg
4 файлов 884•474 байт

Содержимое папки D:\Demki\images\multimedia\big\bloodaria

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:13 368•157 2.jpg
25.04.2002 23:13 373•729 3.jpg
25.04.2002 23:12 400•262 4.jpg
25.04.2002 23:13 358•390 1.jpg
4 файлов 1•500•538 байт

Содержимое папки D:\Demki\images\multimedia\big\chicken

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.03.2002 21:21 137•002 2.jpg
25.03.2002 21:22 57•298 3.jpg
25.03.2002 21:22 134•384 4.jpg
25.03.2002 21:21 165•450 1.jpg
4 файлов 494•134 байт

Содержимое папки D:\Demki\images\multimedia\big\df

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
04.03.2002 16:18 86•353 2.jpg
04.03.2002 16:22 82•349 3.jpg
04.03.2002 16:24 112•001 4.jpg
04.03.2002 16:17 107•537 1.jpg
4 файлов 388•240 байт

Содержимое папки D:\Demki\images\multimedia\big\dragon

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
22.04.2002 22:10 120•161 2.jpg
22.04.2002 22:10 57•999 3.jpg
22.04.2002 22:10 112•189 4.jpg
22.04.2002 22:09 68•910 1.jpg
4 файлов 359•259 байт

Содержимое папки D:\Demki\images\multimedia\big\evilkris

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
05.02.2002 21:36 225•300 2.jpg
05.02.2002 21:37 281•114 3.jpg
05.02.2002 21:37 254•404 4.jpg
05.02.2002 21:36 214•038 1.jpg
4 файлов 974•856 байт

Содержимое папки D:\Demki\images\multimedia\big\fairy

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
21.12.2001 21:26 101•629 2.jpg
21.12.2001 21:28 84•333 3.jpg
21.12.2001 21:27 116•027 4.jpg
21.12.2001 21:26 136•659 1.jpg
4 файлов 438•648 байт

Содержимое папки D:\Demki\images\multimedia\big\farwest

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:15 76•248 2.jpg
25.04.2002 23:15 78•319 3.jpg
25.04.2002 23:15 88•028 4.jpg
25.04.2002 23:15 74•914 1.jpg
4 файлов 317•509 байт

Содержимое папки D:\Demki\images\multimedia\big\gothic

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
29.05.2002 23:13 532•774 2.jpg
29.05.2002 23:14 452•151 3.jpg
23.05.2002 22:02 345•119 4.jpg
29.05.2002 23:13 385•489 1.jpg
4 файлов 1•715•533 байт

Содержимое папки D:\Demki\images\multimedia\big\hotel

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:18 94•222 2.jpg
25.04.2002 23:17 109•799 3.jpg
25.04.2002 23:17 85•587 4.jpg
25.04.2002 23:18 91•600 1.jpg
4 файлов 381•208 байт

Содержимое папки D:\Demki\images\multimedia\big\jack

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
29.01.2002 19:28 276•760 2.jpg
29.01.2002 19:25 263•410 3.jpg
29.01.2002 19:26 158•117 4.jpg
29.01.2002 19:23 258•800 1.jpg
4 файлов 957•087 байт

Содержимое папки D:\Demki\images\multimedia\big\kc

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:18 375•276 2.jpg
25.04.2002 23:18 261•752 3.jpg
25.04.2002 23:18 382•357 4.jpg
25.04.2002 23:19 349•593 1.jpg
4 файлов 1•368•978 байт

Содержимое папки D:\Demki\images\multimedia\big\knightshift

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:19 434•556 2.jpg
25.04.2002 23:19 566•114 3.jpg
25.04.2002 23:19 508•625 4.jpg
25.04.2002 23:19 462•239 1.jpg
4 файлов 1•971•534 байт

Содержимое папки D:\Demki\images\multimedia\big\madcow

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:22 128•870 2.jpg
25.04.2002 23:22 109•577 3.jpg
25.04.2002 23:22 120•555 4.jpg
25.04.2002 23:22 108•366 1.jpg
4 файлов 467•368 байт

Содержимое папки D:\Demki\images\multimedia\big\pi

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
06.11.2001 16:41 103•174 2.jpg
06.11.2001 16:41 89•519 3.jpg
06.11.2001 16:43 73•858 4.jpg
06.11.2001 16:40 117•601 1.jpg
4 файлов 384•152 байт

Содержимое папки D:\Demki\images\multimedia\big\pi2

24.03.2005 20:07 <DIR> ..
24.03.2005 20:07 <DIR> .
25.04.2002 23:23 254•999 2.jpg
25.04.2002 23:23 245•103 3.jpg
25.04.2002 23:23 337•730 4.jpg
25.04.2002 23:23 257•376 1.jpg
4 файлов 1•095•208 байт

Содержимое папки D:\Demki\images\multimedia\big\pinball

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
29.01.2002 22:04 68•396 2.jpg
29.01.2002 22:14 155•848 3.jpg
29.01.2002 22:17 470•939 4.jpg
29.01.2002 22:12 277•738 1.jpg
4 файлов 972•921 байт

Содержимое папки D:\Demki\images\multimedia\big\ploing

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
25.04.2002 23:24 331•544 2.jpg
25.04.2002 23:24 328•518 3.jpg
25.04.2002 23:23 267•304 4.jpg
25.04.2002 23:24 357•842 1.jpg
4 файлов 1•285•208 байт

Содержимое папки D:\Demki\images\multimedia\big\rabiddogs

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
25.03.2002 21:09 237•061 2.jpg
25.03.2002 21:09 240•343 3.jpg
27.03.2002 22:44 238•335 4.jpg
25.03.2002 21:08 276•198 1.jpg
4 файлов 991•937 байт

Содержимое папки D:\Demki\images\multimedia\big\solaris

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
25.04.2002 23:25 148•667 2.jpg
25.04.2002 23:25 143•319 3.jpg
25.04.2002 23:25 131•741 4.jpg
25.04.2002 23:25 133•374 1.jpg
4 файлов 557•101 байт

Содержимое папки D:\Demki\images\multimedia\big\starship

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
25.04.2002 23:26 356•412 2.jpg
25.04.2002 23:26 348•714 3.jpg
25.04.2002 23:25 366•831 4.jpg
25.04.2002 23:26 344•679 1.jpg
4 файлов 1•416•636 байт

Содержимое папки D:\Demki\images\multimedia\big\tim

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
25.04.2002 23:26 139•247 2.jpg
16.11.2001 18:10 106•942 3.jpg
25.04.2002 23:26 149•815 4.jpg
25.04.2002 23:27 147•757 1.jpg
4 файлов 543•761 байт

Содержимое папки D:\Demki\images\multimedia\big\worms

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
25.04.2002 23:27 150•487 2.jpg
12.11.2001 21:21 130•137 3.jpg
12.11.2001 21:22 122•433 4.jpg
25.04.2002 23:27 186•790 1.jpg
4 файлов 589•847 байт

Содержимое папки D:\Demki\images\multimedia\big\wwii

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
25.04.2002 23:28 112•004 2.jpg
25.04.2002 23:28 100•323 3.jpg
25.04.2002 23:28 93•592 4.jpg
25.04.2002 23:28 108•506 1.jpg
4 файлов 414•425 байт

Содержимое папки D:\Demki\images\multimedia\preview

24.03.2005 20:07 <DIR> ..
24.03.2005 20:08 <DIR> .
16.11.2001 00:58 8•416 absolute1.gif
16.11.2001 00:59 15•898 absolute2.gif
16.11.2001 00:59 16•714 absolute3.gif
16.11.2001 01:01 9•882 absolute4.gif
27.04.2002 21:46 14•197 auryn1.gif
27.04.2002 21:45 12•339 auryn2.gif
27.04.2002 21:45 14•488 auryn3.gif
27.04.2002 21:44 13•364 auryn4.gif
21.12.2001 21:18 15•013 aw1.gif
21.12.2001 21:16 16•121 aw2.gif
21.12.2001 21:16 15•566 aw3.gif
21.12.2001 21:15 13•892 aw4.gif
30.01.2002 00:16 15•702 bloodaria1.gif
30.01.2002 00:16 16•937 bloodaria2.gif
30.01.2002 00:15 16•019 bloodaria3.gif
30.01.2002 00:12 16•244 bloodaria4.gif
25.03.2002 21:24 15•114 chicken1.gif
25.03.2002 21:23 13•012 chicken2.gif
25.03.2002 21:23 13•467 chicken3.gif
25.03.2002 21:23 13•770 chicken4.gif
11.03.2002 17:55 12•479 df1.gif
11.03.2002 17:55 11•052 df2.gif
11.03.2002 17:53 13•101 df3.gif
11.03.2002 17:53 12•419 df4.gif
22.04.2002 22:12 11•270 dragon1.gif
22.04.2002 22:11 12•554 dragon2.gif
22.04.2002 22:12 10•508 dragon3.gif
22.04.2002 22:13 13•942 dragon4.gif
05.02.2002 21:41 11•585 evilkris1.gif
05.02.2002 21:40 11•109 evilkris2.gif
05.02.2002 21:39 12•055 evilkris3.gif
05.02.2002 21:38 12•813 evilkris4.gif
21.12.2001 21:33 15•022 fairy1.gif
21.12.2001 21:32 12•809 fairy2.gif
21.12.2001 21:32 12•304 fairy3.gif
21.12.2001 21:29 13•269 fairy4.gif
26.02.2002 17:56 15•660 farwest1.gif
26.02.2002 17:54 15•275 farwest2.gif
26.02.2002 17:54 16•380 farwest3.gif
26.02.2002 17:53 16•115 farwest4.gif
06.11.2001 16:49 12•208 gambler1.gif
06.11.2001 16:50 8•823 gambler2.gif
06.11.2001 16:46 11•021 gambler3.gif
06.11.2001 16:44 6•908 gambler4.gif
29.05.2002 23:15 14•985 gothic2-1.gif
29.05.2002 23:15 15•533 gothic2-2.gif
29.05.2002 23:16 15•121 gothic2-3.gif
23.05.2002 22:14 15•434 gothic2-4.gif
22.02.2002 00:07 13•917 hotel1.gif
22.02.2002 00:06 14•396 hotel2.gif
22.02.2002 00:06 15•462 hotel3.gif
22.02.2002 00:05 14•100 hotel4.gif
29.01.2002 19:30 14•751 jack1.gif
29.01.2002 19:29 13•242 jack2.gif
29.01.2002 19:27 12•380 jack3.gif
29.01.2002 19:26 12•818 jack4.gif
23.01.2002 23:22 16•983 kc1.gif
23.01.2002 23:21 15•844 kc2.gif
23.01.2002 23:20 15•917 kc3.gif
23.01.2002 23:20 16•166 kc4.gif
04.04.2002 18:32 16•808 knightshift1.gif
04.04.2002 18:33 14•928 knightshift2.gif
04.04.2002 18:33 16•967 knightshift3.gif
04.04.2002 18:33 17•133 knightshift4.gif
05.11.2001 22:57 14•374 mad-cow1.gif
05.11.2001 22:58 14•801 mad-cow2.gif
05.11.2001 22:59 11•938 mad-cow3.gif
05.11.2001 22:59 14•581 mad-cow4.gif
18.02.2002 22:11 10•630 pi2-1.gif
18.02.2002 22:10 13•264 pi2-2.gif
18.02.2002 22:09 12•868 pi2-3.gif
18.02.2002 22:09 13•482 pi2-4.gif
29.01.2002 22:20 16•173 pinball1.gif
29.01.2002 22:19 15•885 pinball2.gif
29.01.2002 22:20 14•944 pinball3.gif
29.01.2002 22:18 16•045 pinball4.gif
14.02.2002 21:46 14•051 ploing1.gif
14.02.2002 21:45 13•043 ploing2.gif
14.02.2002 21:44 12•626 ploing3.gif
14.02.2002 21:43 13•861 ploing4.gif
25.03.2002 21:11 16•432 rabiddogs1.gif
25.03.2002 21:10 17•206 rabiddogs2.gif
25.03.2002 21:11 16•662 rabiddogs3.gif
27.03.2002 22:45 13•498 rabiddogs4.gif
16.11.2001 18:01 13•382 solaris1.gif
16.11.2001 18:03 13•940 solaris2.gif
16.11.2001 18:03 12•428 solaris3.gif
16.11.2001 18:04 11•596 solaris4.gif
01.03.2002 22:05 14•720 starship1.gif
01.03.2002 22:04 14•919 starship2.gif
01.03.2002 22:05 14•461 starship3.gif
01.03.2002 22:04 13•592 starship4.gif
16.11.2001 18:13 14•166 tim1.gif
16.11.2001 18:19 11•861 tim2.gif
16.11.2001 18:12 11•337 tim3.gif
16.11.2001 18:11 13•916 tim4.gif
12.11.2001 21:23 13•951 worms1.gif
12.11.2001 21:25 13•424 worms2.gif
12.11.2001 21:24 14•551 worms3.gif
12.11.2001 21:24 14•658 worms4.gif
02.04.2002 18:45 15•888 wwii1.gif
02.04.2002 18:44 16•856 wwii2.gif
02.04.2002 18:44 13•574 wwii3.gif
02.04.2002 18:45 15•394 wwii4.gif
104 файлов 1•454•699 байт

Содержимое папки D:\catalog cd

24.03.2005 20:31 <DIR> ..
24.03.2005 20:07 <DIR> .
22.09.2003 18:44 2•605•206 bdcd.txt
24.07.2003 16:27 227 genre.txt
21.11.2003 15:51 5•654 read_me.txt
21.11.2003 15:51 7•310 rules.html
24.07.2003 16:27 372 vendor.txt
24.07.2003 16:27 569•856 bdGame.exe
6 файлов 3•188•625 байт

Содержимое папки D:\jwd

24.03.2005 20:31 <DIR> ..
24.03.2005 20:08 <DIR> .
04.06.2004 20:05 13 jwd_g2a_eng_gm1_06122004_1_js_sr.txt
1 файлов 13 байт

Содержимое папки D:\rus

24.03.2005 20:31 <DIR> ..
24.03.2005 20:08 <DIR> Miles
24.03.2005 20:08 <DIR> System
24.03.2005 20:08 <DIR> _work
24.03.2005 20:08 <DIR> data
24.03.2005 20:08 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\Miles

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> .
17.03.2003 19:15 81•408 MssDS3D.m3d
17.03.2003 19:15 90•112 MssDX7.m3d
17.03.2003 19:15 115•712 MssEAX.m3d
17.03.2003 19:15 369•664 MssRSX.m3d
17.03.2003 19:15 77•824 MssSoft.m3d
17.03.2003 19:15 98•816 MssA3D.m3d
6 файлов 833•536 байт

Содержимое папки D:\rus\System

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> .
16.04.2003 22:19 375•808 BinkW32.dll
22.01.2003 03:30 32•827 BugslayerUtil.dll
22.01.2003 03:30 573•952 GeDialogs.dll
24.04.2003 22:00 19•215 Gothic.INI
24.03.2005 01:26 9•034•600 Gothic2.exe
22.01.2003 03:30 85•264 ImageHl2.dll
22.01.2003 03:30 35•088 KillHelp.exe
11.03.2005 05:17 77•824 MSSSOFT.M3D
22.01.2003 03:30 94•208 MallocWin32Debug.dll
22.01.2003 03:30 102•672 MsDbi.dll
17.03.2003 19:15 370•688 Mss32.dll
05.08.2003 07:55 131•584 MssDsp.flt
24.09.2003 05:06 1•268 Paths.d
22.01.2003 03:30 124•656 Shw32.dll
07.08.2003 14:59 2•356•224 Spacer2.exe
23.04.2003 21:36 93•696 Vdfs32e.dll
24.04.2003 08:20 45•056 Vdfs32e.exe
22.01.2003 03:30 93•696 Vdfs32g.dll
24.09.2003 05:06 7•168 Vdfs32g.exe
06.12.2004 19:20 2•113•536 ar.exe
24.03.2005 01:26 6•725•035 protect.dll
24.03.2005 13:38 217•088 protect.msg
22 файлов 22•711•153 байт

Содержимое папки D:\rus\_work

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> data
24.03.2005 20:08 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\data

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> Scripts
24.03.2005 20:08 <DIR> Video
24.03.2005 20:08 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\data\Scripts

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> Content
24.03.2005 20:08 <DIR> _compiled
24.03.2005 20:08 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\data\Scripts\Content

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> Cutscene
24.03.2005 20:08 <DIR> .
0 файлов 0 байт

Содержимое папки D:\rus\_work\data\Scripts\Content\Cutscene

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> .
24.03.2005 04:47 6•110•935 Ou.bin
24.03.2005 04:47 6•110•935 Ou.dat
02.10.2003 20:02 7•381•618 Ou.lsc
22.01.2003 04:30 5•449•906 OU.csl
4 файлов 25•053•394 байт

Содержимое папки D:\rus\_work\data\Scripts\_compiled

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> .
02.10.2003 20:03 7•750 CAMERA.DAT
02.10.2003 20:03 42•312 FIGHT.DAT
24.03.2005 04:47 7•551•463 GOTHIC.DAT
02.10.2003 20:02 14•859 MUSIC.DAT
02.10.2003 19:59 3•957•242 OUINFO.INF
02.10.2003 20:02 647•240 PARTICLEFX.DAT
02.10.2003 20:02 269•088 SFX.DAT
02.10.2003 20:03 176•826 VISUALFX.DAT
03.02.2005 00:56 130•151 menu.dat
9 файлов 12•796•931 байт

Содержимое папки D:\rus\_work\data\Video

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> .
23.02.2005 12:55 29•074•656 Intro_Addon.bik
1 файлов 29•074•656 байт

Содержимое папки D:\rus\data

24.03.2005 20:08 <DIR> ..
24.03.2005 20:08 <DIR> .
21.03.2005 19:26 1•064•820 speech3.vdf
1 файлов 1•064•820 байт

Всего файлов:
406 файлов 671•113•126 байт
138 папок 0 байт свободно

CD #2:
Том в устройстве D имеет метку G2ADDON2
Серийный номер тома: D9D1-2F64

Содержимое папки D:\

20.03.2005 04:37 416•360•790 data3.cab
02.02.2004 14:29 1•919 Техподдержка.txt
24.03.2005 20:16 209•715•200 data.dat
3 файлов 626•077•909 байт

Всего файлов:
3 файлов 626•077•909 байт
0 папок 0 байт свободно


N.B.:
- List of files contains some cyrillic characters (because I have a russian version of Windows).
- I know nothing about files from a folder "rus" - they may be included into .cab or should be copied directly into "Gothic 2" folder after end of unpacking from cabs?:dnuhr:
- Contents of folders "Demki" and "catalog cd" from NotR CD #1 not required to install addon.
- Filled by junk code file "data.dat" from NotR CD #2 must be ignored.
- I know about presence of russian version Gothic II in one DVD and Gothic II Gold (russian versions of Gothic II and NotR in one DVD), but I don't have these discs.:(

Larisa
11.11.2009, 06:11
Version 0.91 (http://upload.worldofplayers.de/files4/G2extra091.zip) supports G2 vanilla on 3 CDs, the one avaratz has (http://forum.worldofplayers.de/forum/showthread.php?p=11054746&#post11054746).



- I know nothing about files from a folder "rus" - they may be included into .cab or should be copied directly into "Gothic 2" folder after end of unpacking from cabs?:dnuhr:

I guess in the packs are the original En version files and in the rus folder the translation to Russian (looks like the binaries, the scripts and the videos). Does the Ru version has full speech in Russian or just the text?

Dimus
11.11.2009, 07:40
Version 0.91 (http://upload.worldofplayers.de/files4/G2extra091.zip) supports G2 vanilla on 3 CDs, the one avaratz has (http://forum.worldofplayers.de/forum/showthread.php?p=11054746&#post11054746).




I guess in the packs are the original En version files and in the rus folder the translation to Russian (looks like the binaries, the scripts and the videos). Does the Ru version has full speech in Russian or just the text?

Yes, the Russian versions of G2 & NotR have full Russian speeches (Speech1.vdf, Speech2.vdf and Speech_Addon.vdf) which included into cabs. The file speech3.vdf contains a part of error fixes in various dialogues (for example, fixed one phrase of Boltan about Bennet, phrases of Dar when Hero gives him mushroom tobacco, some phrases of Hero from dialogues with Lee and so on).
I'll try your latest extractor to look into cabs of Russian version of G2 and compare unpacked contents with files from "rus" folder.

WernerTWC
11.11.2009, 19:32
Someone with a non EN Windows reading this? I'm curious if the commands are translated or still in English. For example, on a German Windows, does dir shows "freien Bytes" or "free bytes"?

Do you mean this?

Larisa
11.11.2009, 19:58
Do you mean this?

Yep. It's what I was afraid about. :(

Guess I have to change the detection method from dir to wmic.

Dimus
12.11.2009, 12:38
Attempt to unpack Russian version of G2 via script "G2 on 3 CDs.cmd" failed because required for installation file sets in English and Russian versions too different. After adaptation script to Russian file set all required files copied into current folder:
Volume in drive D has label Data
Volume Serial Number: E49B-16C5

Contents of folder D:\Temp

12.11.2009 17:24 <DIR> .
12.11.2009 17:24 <DIR> ..
12.11.2009 16:46 <DIR> Gothic2
07.12.2004 05:05 437•435 data1.cab
07.12.2004 05:08 727•654•400 data3.cab
07.12.2004 05:09 694•690•428 data4.cab
12.11.2009 16:41 21•124 G2 Rus on 3 CDs.cmd
07.12.2004 05:06 398•864•384 data2.cab
07.12.2004 05:05 32•874 data1.hdr
25.07.2002 21:07 346•602 ikernel.ex_
07.12.2004 05:09 505 layout.bin
15.05.2000 13:08 134•656 Setup.exe
07.12.2004 05:04 81 Setup.ini
07.12.2004 05:04 142•847 setup.inx
12.11.2009 17:04 91 setup.log
12 files 1•822•325•427 bytes

(Warning: contents of folder D:\Temp\Gothic2 is not shown.)
But after execution of command setup.exe /S /X .\ unpacking process not started and appears file setup.log with following content:
[InstallShield Silent]
Version=v6.00.000
File=Log File
[ResponseResult]
ResultCode=-5
Further testing of script stopped because I don't know what means this result code.:dnuhr:

Larisa
12.11.2009, 13:29
installation file sets in English and Russian versions too different.

Indeed, the scripts made so far by me are tailored to work only with the versions I've tested, to make sure other problems, like the one below, don't appear to normal users.


But after execution of command setup.exe /S /X .\ unpacking process not started and appears file setup.log with following content:
[InstallShield Silent]


That means the russian installer is made with installshield software, not with wise installer software, like the English versions. So, most probably, it needs different parameters. (you could try with setup.exe /extract_all:c:\g2extra or setup.exe /a )
But, do you know if there are such problems like the ones this script tries to solve... with the russian version? No need to develop a fix for a problem that doesn't exist.
So far my guess was that it was related to the installer technology used.



Other things: switched the free space detection method, works fine both in xp and in vista.
However, now I saw that I must add some lines advising the user what to do in case a UAC windows pops up, and also trying to find a workaround for another window (vista is so great §cry) with compatibility assistant blah blah blah.

Larisa
14.11.2009, 11:05
New update: 0.95 (http://upload.worldofplayers.de/files4/G2extra095.zip)

A couple of minor improvements, also added a generic script file, this one will just create the folders and move the files there if the user managed to extract the files from archives. So this should cover other versions that I didn't create specific scripts for them.

With the English variants I think I'm done, except the one from the Universe package and probably the NotR standalone (which I guess not many people have it).

Still no solution for windows popping up on Vista.


Germans: do you know if this script could be helpful for G2 DE? Problems with installer also in G2 in German?

Dimus
14.11.2009, 15:51
Still no solution for windows popping up on Vista.
Perhaps instead of attempts to solve a problem with popping up windows on Vista it makes sense to write the warning to users that before start of scripts it is necessary to disable UAC?§kratz Certainly, this operation will demand additional reboot of the computer.

Larisa
14.11.2009, 16:41
Perhaps instead of attempts to solve a problem with popping up windows on Vista it makes sense to write the warning to users that before start of scripts it is necessary to disable UAC?§kratz Certainly, this operation will demand additional reboot of the computer.

Indeed, the text warning is the easiest solution for me, and it's already implemented.

There was a solution for warning windows: requiring the user to run the script with "run as administrator". That would prompt UAC right at that moment, and not later, when the archive extraction command is processed.
That would've had another beneficial aspect: the script could successfully stop the compatibility process (and start it again when it's done).
However, I didn't find out any way to make the script test if it's actually run with admin rights and also, running a script with "run as admin" changes the current working dir to C:\Windows\System32 which is not a good folder in which to mess around. That could be solved by using absolute paths in the script, but I wanted to give freedom to the user where to run the script.

Korianous
16.11.2009, 05:35
Perhaps instead of attempts to solve a problem with popping up windows on Vista it makes sense to write the warning to users that before start of scripts it is necessary to disable UAC?§kratz Certainly, this operation will demand additional reboot of the computer.

UAC is a rather Big Brother-ish security feature of Vista, IMO you're better off just disabling this in general.

Larisa
19.11.2009, 21:53
The final version (for now): 1.0 (http://upload.worldofplayers.de/files4/G2extra10.zip)
Some minor adjustments to texts and a readme.pdf file included.


If I get info on universe or other variants, I'll make a script for them.

The cat has completed the task, the cat can rest now.

Korianous
20.11.2009, 02:30
Nice work Larisa. I'll get started on a front end as soon as I'm able :).

Larisa
26.11.2009, 10:45
I just found out there was already a solution like mine around here (http://forum.worldofplayers.de/forum/showthread.php?p=2885741&#post2885741). :eek:

Korianous
26.11.2009, 17:41
Your setup works a tad better, most people who have had issues could not get it to work with the old setup ;).

alongeasy
08.12.2009, 02:55
Thanks man. If not because of u all and this topic, i will cant play this game.
G2 is for me the advance G. Best.

Vampyro
15.12.2009, 20:47
I get the error that the installation has failed on my own post they said I should check this post
on my post another one mentioned that i need 2.2 GB and I have 1818MB(1.8GB)
is this maybe the problem?
Could that 'file of larisa' help me?

WernerTWC
16.12.2009, 18:39
I get the error that the installation has failed on my own post they said I should check this post
on my post another one mentioned that i need 2.2 GB and I have 1818MB(1.8GB)
is this maybe the problem?

Yes, ... you'll need enough of free disk-space in order to install the game.


Could that 'file of larisa' help me?

Not in this case.

Vampyro
17.12.2009, 17:49
damn!:(:dnuhr:§cry

PS: I don't understand, there is 111GB on the C-station and 148GB on the D-station
So why doesn't it install?

Korianous
17.12.2009, 18:09
If you have enough free space and the setup is not working, try the Extractor.

Vampyro
17.12.2009, 18:37
Okay I did something wrong(I know that now)
but I only could G3 because I get 4 imgs with G2 wich are: autorun.ico
autorun.inf(1kB) Gothic2-Setup.Wo2 (650.000kB) this is an 'Wo2 file'
and NoAutorun.exe wich one must I take to install it? I think I must have the Wo2 file but wich program should I use for that or can I just fill in with Google generator: Wo2-file converter?

Korianous
17.12.2009, 20:50
What version of Gothic II did you get?

Vampyro
17.12.2009, 21:00
I don't know( where can I find that?)

Korianous
17.12.2009, 23:01
I don't know( where can I find that?)

Perhaps your game box :o.

Vampyro
18.12.2009, 12:06
I see something inside the box above: there is a recycle amrk with pp under it and to the left of it there is somehing like 2.1
I have 3 CDs 2 install 1 play
It ain't gold and it's English
I didn't got anything with it only the 3 Cds(no manual)

Larisa
19.12.2009, 06:43
Could that 'file of larisa' help me?

My script uses even more that 2 GB (around 4GB) because it copies the files from the disks to the hard drive before extracting it.


So, you have G2 vanilla on 3 CDs.
If the file sizes match my script, it could extract it.

Make sure those "111GB on the C-station and 148GB on the D-station" are free space, not total space.

Vampyro
19.12.2009, 16:49
My C: station has 111GB wich are used 88GB and 23,7GB Available
The D: station has 149GB in total 138GB is available space

This is what it says in My Computer

I have installled G3 but I can't install G2
How can I open a WO2 file plz help me(or I'll be very dissapointed in all of u)

(this may be off-topic) I can't play G3 because I see all the 'things' that worked on it
the screen becomes white, then black, then my screen says ''No signal -> Going to sleep''
I can't do anything like Alt-Tab or Alt-F4 or Ctrl-Alt-Del no I have to shut down the PC manually

Larisa
19.12.2009, 17:16
How can I open a WO2 file plz help me(or I'll be very dissapointed in all of u)


Download this file: http://upload.worldofplayers.de/files4/G2extra10.zip

Once it's saved on your computer, extract the contents with WinZip, WinRar, 7Zip or another archiving software.

Once the contents are extracted, in the G2Extra there should be 5 files.
Put the G2 disk 1 in the drive and double click on "G2 on 3 CDs.cmd"
Follow the instruction that appear on that window (it will tell you when to insert the next disks, etc.)

Vampyro
20.12.2009, 14:31
Well I see this on the C:\WINDOWS\system32\cmd.exe of you Larisa:

wmic is'nt recognized as a (intern / extern assignment, program or batchfile(probably Patchfile)(I don't know if it's a good translation))
until...


-----------------------------------------------------------------
--------You will need approximatively 4 GB of ---------------------
--------Free space to continue: 4300000000 bytes
-----------------------------------------------------------------
-----------On drive c: you have: free bytes
-----------------------------------------------------------------
---------Do not continue if you don't have enough free space------
-----------------------------------------------------------------

Press a button to continue. . . _

Larisa
20.12.2009, 14:44
wmic is'nt recognized as a (intern / extern assignment, program or batchfile(probably Patchfile)(I don't know if it's a good translation))
until...


Yeah, I guess it can't find it (maybe not in the PATH or it doesn't exist at all). I guessed all windowses :p (after xp) have it by default.

It doesn't matter at all, since it's used just to show you how much free space you currently have. Proceed with the next part of the scrip.

Edit: apparently Xp Home doesn't have wmic, just the Professional edition. So that's why you got that error.

Vampyro
20.12.2009, 14:57
Okay but after the next message(when I press enter) it dissapears and doesn't come back anymore. I don't hear the computer making some noise like it's doing something heavy or so.

And it says that there are Gothic2 files but I don't see anyone except the readme and the extra you gave me both SO???

Larisa
20.12.2009, 17:43
Okay but after the next message(when I press enter) it dissapears and doesn't come back anymore.

:dnuhr:

Try this one: http://upload.worldofplayers.de/files4/G2extra11.zip

I removed the wmic command, see if this works properly.


You could help me (and yourself) by posting the contents of the CDs here (folder/file structure, with sizes). You can do this by Start->run-> type cmd and hit Enter.
There type (or paste) this: dir /s /og > c:\list.txt
Then copy the contents of list.txt here.
Do this for all 3 disks.

Vampyro
20.12.2009, 19:22
You forgot about my 2nd problem
the 'you already have a Gothic2 file' message

does this message appear even when you don't have one?

Larisa
20.12.2009, 19:33
You forgot about my 2nd problem
the 'you already have a Gothic2 file' message

The script creates a Gothic2 folder (not file) inside your G2extra folder. Delete the Gothic2 folder and everything in it (probably empty folders) and start the script again.

That message would not appear if you don't already have a G2 folder in it.

Vampyro
20.12.2009, 19:42
So you want me to delete your .cmd file in the G2extra11 folder and then press enter on the (green/black)thing you made for me?
Or I don't understand you

Larisa
20.12.2009, 21:25
So you want me to delete your .cmd file in the G2extra11 folder and then press enter on the (green/black)thing you made for me?
Or I don't understand you

No, what you said before, about "you already have a Gothic2 file"...

Who is complaining about that? The script? (The script being the green text thing, the .cmd file).
If yes, that means you already have a Gothic2 folder inside g2extra11 folder.
That should be deleted, the gothic2 folder, not the script.

Or just to stay simple: delete everything (all the g2extra folders you have so far). Download again g2extra11, extract it and launch g2 on 3 cds.cmd.

Vampyro
20.12.2009, 22:34
with extracting you mean open??
the only thing in that G2extra11 is that 'G2 on 3 Cds.cmd' file
I already think I know that extract thing

edit: I extracted it opened it and he said that the Cd wasn't in the E station but My computer said it was
i inserted it like this: E and not e or e: or E:

Larisa
20.12.2009, 23:28
with extracting you mean open??

Kinda. With XP you can open zip files with explorer. But I suggest first to extract the contents of the zip file and then run the cmd.


edit: I extracted it opened it and he said that the Cd wasn't in the E station but My computer said it was
i inserted it like this: E and not e or e: or E:

At some point the script will ask you the letter of the drive where the disk is inserted. Press just E or e, without :, if it's in the E: drive.

Does the error say this: "The disk is not in the drive or is the wrong disk, The scrip cannot find the necessary files." ?

If your sure the disk 1 is in drive, it's quite possible the file sizes don't match.

Vampyro
21.12.2009, 07:52
At some point the script will ask you the letter of the drive where the disk is inserted. Press just E or e, without :, if it's in the E: drive.
He is in the E: station according to My Computer


Does the error say this: "The disk is not in the drive or is the wrong disk, The scrip cannot find the necessary files." ?
yes he says that


If your sure the disk 1 is in drive, it's quite possible the file sizes don't match.
what do you mean, I know the sizes 1kb 1kb and 650.000kb

Larisa
21.12.2009, 11:17
I mean there are different versions of G2. Some have more files on disk than others, some are on 1 dvd, some use a different type of installer software.
That's why my script checks the file sizes, if it doesn't match, it will not work.

Put the disk 1 on the drive, and use this command in the E: drive: dir /s /og > c:\list.txt

Then open list.txt, select the text there and copy/paste it here.

Or you can contact me on icq/ym if you like, I could guide you step by step.

Vampyro
21.12.2009, 12:52
Could you explain more of what I exactly have to do?
like:

then you see in the left corner above ...

Larisa
21.12.2009, 13:24
Could you explain more of what I exactly have to do?
like:

then you see in the left corner above ...

Put the disk 1 in the drive.

Click on Start, then on the "Run" menu.
Now you should have a new window, in there you should write cmd and press the OK button.

Now a black window with white text should appear.
In there write E: and press Enter.

Now write again: dir /s /og > c:\list.txt and press Enter.

If everything is correctly done until now, you should have a list.txt file in drive C:
Open that file with notepad or another program for text editing.
Select all the text in that file, copy it (by pressing Ctrl+C or right click and select Copy), make a new post here, in this thread, and paste the text (by pressing Ctrl+V or right click and select Paste).

Malkavic
21.12.2009, 13:28
Thank you for this extractor, now I can finally play Gothic 2! :)

Vampyro
21.12.2009, 15:26
Thank you, I understand what you mean if you say it like this
I'm Dutch so I guess it's the best if you talk to me like that from now on to help me.
(It's in Dutch)you can translate this maybe or you can read it just like this
here it is:

De volumenaam van station E is GOTHIC2_CD2
Het volumenummer is 42E8-5402

Map van E:\

16-02-2003 19:47 68 AutoRun.inf
24-04-2003 18:22 665.600.000 Gothic2-Setup.W02
16-02-2003 19:46 36.864 NoAutorun.exe
22-01-2003 01:30 766 AutoRun.ico
4 bestand(en) 665.637.698 bytes

Totaal aantal weergegeven bestanden:
4 bestand(en) 665.637.698 bytes
0 map(pen) 0 bytes beschikbaar

Vampyro
21.12.2009, 15:28
In case you can't read it:

The volume name of drive E is GOTHIC2_CD2
Volume Serial Number is 42E8-5402

Map of E: \

16-02-2003 19:47 68 AutoRun.inf
24-04-2003 18:22 665,600,000 Gothic2-Setup.W02
16-02-2003 19:46 36,864 NoAutorun.exe
22-01-2003 01:30 766 AutoRun.ico
4 file (s) 665,637,698 bytes

Total number of files displayed:
4 file (s) 665,637,698 bytes
0 folder (s) 0 bytes free

Larisa
21.12.2009, 15:37
(It's in Dutch)you can translate this maybe or you can read it just like this
here it is:

No need to translate those parts, I can guess what they mean.

Great, now we're getting somewhere. :)

You'll have to repeat the procedure again, for the rest of the disks.
You gave me the listing for GOTHIC2_CD2, now I need it for disk 1 and 3.

Then I can personalize the script for your needs.

Vampyro
21.12.2009, 16:18
Okay but remember that CD2 what you just read here is the install cd 1
And the play cd is 1 and install 2 si cd3

This is it all until now: Don't know if it is even that one above either

Map van E:\

04-02-2003 14:50 <DIR> DirectX81
24-01-2003 12:25 <DIR> ArxDemo
16-02-2003 19:47 240 AutoRun.inf
24-04-2003 18:23 341.105.107 Gothic2-Setup.W03
16-02-2003 19:46 36.864 NoAutorun.exe
22-01-2003 01:30 766 AutoRun.ico
4 bestand(en) 341.142.977 bytes

Map van E:\ArxDemo

15-01-1601 11:48 <DIR> .
15-01-1601 11:48 <DIR> ..
24-01-2003 12:24 <DIR> bin
21-06-2002 14:36 31.744 Setup.exe
21-06-2002 16:04 101.581.207 Setup1.cab
21-06-2002 15:14 23.103.162 Setup2.cab
21-06-2002 15:22 28.787.575 Setup3.cab
21-06-2002 14:38 1.304.064 Setup.msi
21-06-2002 14:36 805 Setup.ini
21-06-2002 14:38 1.708.856 instmsi.exe
21-06-2002 14:38 1.822.520 instmsiw.exe
8 bestand(en) 158.339.933 bytes

Map van E:\ArxDemo\bin

15-01-1601 15:45 <DIR> ..
15-01-1601 15:45 <DIR> .
13-09-2002 13:13 3.166.261 ARX.exe
21-06-2002 15:14 85 Arkane Studios Internet.url
21-06-2002 15:14 88 Arx Fatalis Internet.url
21-06-2002 15:19 36.992 Arx.ttf
21-06-2002 15:20 180.224 Athena.dll
21-06-2002 15:22 77 JoWood Internet.url
13-09-2002 13:03 195.248 LOC.pak
21-06-2002 15:23 921.654 Logo.bmp
13-09-2002 13:02 1.696.636 data2.pak
9 bestand(en) 6.197.265 bytes

Map van E:\DirectX81

06-10-1620 11:48 <DIR> ..
06-10-1620 11:48 <DIR> .
22-01-2003 01:30 562.193 BDA.cab
22-01-2003 01:30 562.548 BDANT.cab
22-01-2003 01:30 35.328 DSETUP.dll
22-01-2003 01:30 14.382.314 DirectX.cab
22-01-2003 01:30 41.984 cfgmgr32.dll
22-01-2003 01:30 1.901.056 dsetup32.dll
22-01-2003 01:30 9.884.799 dxnt.cab
22-01-2003 01:30 140.288 dxsetup.exe
22-01-2003 01:30 341.264 setupapi.dll
9 bestand(en) 27.851.774 bytes

Totaal aantal weergegeven bestanden:
30 bestand(en) 533.531.949 bytes
9 map(pen) 0 bytes beschikbaar

Vampyro
21.12.2009, 16:32
This for the Play CD

De volumenaam van station E is GOTHIC2_CD1
Het volumenummer is 0C0C-79CC

Map van E:\

24-04-2003 17:58 <DIR> AutoRun
22-01-2003 01:30 94.208 AutoRun.exe
22-01-2003 01:30 766 AutoRun.ico
22-01-2003 01:30 318 AutoRun.inf
22-01-2003 01:30 574 AutoRun.ini
24-01-2003 11:29 40.960 DemoSetup.exe
03-02-2003 11:49 5.101 EULA.txt
24-04-2003 18:22 665.600.000 Gothic2-Setup.exe
22-01-2003 01:30 97 Gothic2.url
22-01-2003 01:30 123 JoWooD Homepage.url
22-01-2003 01:30 12.997 ReadMe.txt
24-01-2003 11:29 239 Register.url
11 bestand(en) 665.755.383 bytes

Map van E:\AutoRun

15-01-1601 11:48 <DIR> ..
15-01-1601 11:48 <DIR> .
22-01-2003 01:30 37.494 ArxDemo_hover.bmp
22-01-2003 01:30 37.494 ArxDemo_normal.bmp
22-01-2003 01:30 37.494 ArxDemo_pushed.bmp
22-01-2003 01:30 32.694 AutoRun_checked_hover.bmp
22-01-2003 01:30 32.694 AutoRun_checked_normal.bmp
22-01-2003 01:30 32.694 AutoRun_checked_pushed.bmp
22-01-2003 01:30 32.694 AutoRun_unchecked_hover.bmp
22-01-2003 01:30 32.694 AutoRun_unchecked_normal.bmp
22-01-2003 01:30 32.694 AutoRun_unchecked_pushed.bmp
22-01-2003 01:30 38.454 Exit_hover.bmp
22-01-2003 01:30 38.454 Exit_normal.bmp
22-01-2003 01:30 38.454 Exit_pushed.bmp
22-01-2003 01:30 33.654 Install_hover.bmp
22-01-2003 01:30 33.654 Install_normal.bmp
22-01-2003 01:30 33.654 Install_pushed.bmp
22-01-2003 01:30 15.507.574 Installer_loop.wav
22-01-2003 01:30 921.654 MenuBg.bmp
22-01-2003 01:30 37.494 Play_hover.bmp
22-01-2003 01:30 37.494 Play_normal.bmp
22-01-2003 01:30 37.494 Play_pushed.bmp
22-01-2003 01:30 32.694 ReadMe_hover.bmp
22-01-2003 01:30 32.694 ReadMe_normal.bmp
22-01-2003 01:30 32.694 ReadMe_pushed.bmp
24-04-2003 13:37 876.544 ar.exe
24 bestand(en) 18.041.306 bytes

Totaal aantal weergegeven bestanden:
35 bestand(en) 683.796.689 bytes
3 map(pen) 0 bytes beschikbaar


PS: what I said about that it maybe was added to it or something like it IT'S NOT

Larisa
21.12.2009, 16:35
Well I named the disks in the order you need to install them.

Now I'll make the modifications.

Edit: here it is: http://upload.worldofplayers.de/files4/G2extra12.zip

Remember, the first disk that needs to be in the drive is the play disk, then install disk 1, and the last: install disk 2.
The script will tell you when to switch the disks.

Vampyro
21.12.2009, 16:44
Maube you don't need to hellp me anymore with this
Somehow he launched the Gothic Main screen as it should be and I could click on install G2

Larisa
21.12.2009, 18:05
Glad to hear it works, you helped me also, now I know about another kind of G2. :)

And I think I know what went wrong from the first place:


I have inserted install cd 1 of Gothic 2.(version 2.1 i guess)

The first disk to run the install was the Play disk, that's why the autorun on the install 1 and 2 disks didn't worked.

Vampyro
22.12.2009, 12:38
yeah I fought I insreted install 1 first and then he asked for it at some place and ten for the install 2 cd
So I fought HUH?
But what you say is what happened I guess.

PS I have a bug that he stall when I want to fast of making a self-forged sword on an anvil
so i don't wait till this appears

Slef-forged sword
END

Larisa
08.06.2010, 20:43
Ok, project completed. I hope http://blutfeuer.com/smilies/cats3.gif
Thanks to ZombieNL I've got a listing for the Universe edition and it appears it uses installshield, not wise. So I guess there's no need for a script for it. First post updated to include Vampyro's version of G2.

ZombieNL
08.06.2010, 23:27
I never got any errors while installing a gothic game,
but I'm always willing to help others.

C-Hawk
25.10.2010, 22:20
I ran your extractor, the normal one, 4 me: G2 on 3CD's, and the personal for Vampyro wich I think was the right one, after I found out the 1st one didn't work. I think I've found that Gothic2.exe but I'm not sure; anyway, it's an application wich doesn't work, can you help me??
I did everything like 2 times§cry
I have Win7
1TB

Larisa
25.10.2010, 22:29
I think I've found that Gothic2.exe but I'm not sure; anyway, it's an application wich doesn't work, can you help me??

Could you rephrase that, please? I don't understand it. What Gothic2.exe you found and where? A path or something. And 'an application that doesn't work'... what doesn't work, when you try to launch gothic2.exe? You get an error? If yes, copy/paste what exactly says in that error message.

C-Hawk
25.10.2010, 22:43
Alright I'll be more secure:

I think I've found that Gothic2.exe but I'm not sure; anyway, it's an application wich doesn't work, can you help me??
I have this:
http://upload.worldofplayers.de/files5/AutoRun.icoGothic2(name) 24-4-2003 14:45(last edit date) toepassing(type)-> (application?)

IT DOESN'T SAY IT IS A .exe

Could you rephrase that, please? I don't understand it. What Gothic2.exe you found and where? A path or something.
I don't know exactly where I got that Gothic2.exe in my head, but I DO know I got it from YOU, Larisa:p

And 'an application that doesn't work'... what doesn't work, when you try to launch gothic2.exe? You get an error? If yes, copy/paste what exactly says in that error message.
It displays a circle when I double-click it, but after that... NOTHING

Larisa
26.10.2010, 00:51
IT DOESN'T SAY IT IS A .exe

What extension does it have then? You came up with gothic2.exe, not me :)
Disable "hide extensions for known file types" perhaps.


It displays a circle when I double-click it, but after that... NOTHING

:dnuhr:


Let's try something else:

1. You should've downloaded the file from here, it's a zip, inside some *.cmd files and a .pdf.
2. I understood that the alternate version was the right one for you.
3. Did the whole process completed successfully? Did it copied the files from the disks, asked you to insert the disks, etc?
If yes, at the end it should've opened a new windows explorer window, there the whole unpacked game should've resided. Inside the System folder you should've found gothic2.exe
4. Now, launching the game by double-clicking gothic2.exe doesn't work for some reason.

Please correct me at the above steps and tell me what you did differently.

C-Hawk
26.10.2010, 08:46
Disable "hide extensions for known file types" perhaps.
Maybe, yes:)

Let's try something else:

1. You should've downloaded the file from here, it's a zip, inside some *.cmd files and a .pdf.
2. I understood that the alternate version was the right one for you.
3. Did the whole process completed successfully? Did it copied the files from the disks, asked you to insert the disks, etc?
If yes, at the end it should've opened a new windows explorer window, there the whole unpacked game should've resided. Inside the System folder you should've found gothic2.exe
4. Now, launching the game by double-clicking gothic2.exe doesn't work for some reason.
1,2&3 did work except for this:
If yes, at the end it should've opened a new windows explorer window, there the whole unpacked game should've resided. Inside the System folder you should've found gothic2.exe
That's the problem I think, I only see something flashing around in my 'library' so... nothing new in :pFirefox:p

Please correct me at the above steps and tell me what you did differently.
4. won't work either then;):o

Larisa
26.10.2010, 12:12
I only see something flashing around in my 'library' so... nothing new in :pFirefox:p

I don't know what's this 'library', I was talking about windows explorer not internet explorer. Kinda 2 different things. Windows explorer is that thing that you see files and folders with. When you click on My Computer, it opens the windows explorer.

C-Hawk
26.10.2010, 12:15
I mean the same too, with me it says, 'bibliotheek'=library;):eek:
That's when I open it normally.
Don't remember what it opened after 'instalation complete' --> I click the flashing button --> something opens --> that file above what you call 'Gothic2.exe' wich could be right, indeed, but only shows a circle for 3 secs.:(

Trokar the White
27.10.2010, 07:21
The doctor said I wouldn't have so many nose bleeds if only I'd keep my finger out of there.

C-Hawk
27.10.2010, 09:24
What the Hell??:eek:§burn
This ain't helpin' mate:mad:

Or are you being cryptic??

C-Hawk
08.11.2010, 22:41
I've been thinking and this came to my mind:
Can I install Virtual Windows XP and then install Gothic 2 onm that?
This is my dxdiag:(It's amazingly long:eek::eek::eek::scared::scared::scared::gratzsry
------------------
System Information
------------------
Time of this report: 10/16/2010, 00:01:25
Machine name: (...-PC
Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7600) (7600.win7_ldr.100618-1621)
Language: Dutch (Regional Setting: Dutch)
System Manufacturer: MSI
System Model: MS-7586
BIOS: Default System BIOS
Processor: Intel(R) Core(TM) i3 CPU 530 @ 2.93GHz (4 CPUs), ~2.9GHz
Memory: 4096MB RAM
Available OS Memory: 4024MB RAM
Page File: 4070MB used, 3974MB available
Windows Dir: C:\Windows
DirectX Version: DirectX 11
DX Setup Parameters: Not found
User DPI Setting: Using System DPI
System DPI Setting: 96 DPI (100 percent)
DWM DPI Scaling: Disabled
DxDiag Version: 6.01.7600.16418 64bit Unicode

------------
DxDiag Notes
------------
Display Tab 1: No problems found.
Sound Tab 1: No problems found.
Sound Tab 2: No problems found.
Input Tab: No problems found.

--------------------
DirectX Debug Levels
--------------------
Direct3D: 0/4 (retail)
DirectDraw: 0/4 (retail)
DirectInput: 0/5 (retail)
DirectMusic: 0/5 (retail)
DirectPlay: 0/9 (retail)
DirectSound: 0/5 (retail)
DirectShow: 0/6 (retail)

---------------
Display Devices
---------------
Card name: ASUS EAH5770 Series
Manufacturer: ATI Technologies Inc.
Chip type: ATI display adapter (0x68B8)
DAC type: Internal DAC(400MHz)
Device Key: Enum\PCI\VEN_1002&DEV_68B8&SUBSYS_03441043&REV_00
Display Memory: 2770 MB
Dedicated Memory: 1014 MB
Shared Memory: 1755 MB
Current Mode: 1920 x 1080 (32 bit) (60Hz)
Monitor Name: BenQ G2220HD (Analog)
Monitor Model: BenQ G2220HD
Monitor Id: BNQ7820
Native Mode: 1920 x 1080(p) (60.000Hz)
Output Type: HD15
Driver Name: atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atium d6a.cap,atitmm64.dll
Driver File Version: 8.14.0010.0708 (English)
Driver Version: 8.670.0.0
DDI Version: 10.1
Driver Model: WDDM 1.1
Driver Attributes: Final Retail
Driver Date/Size: 10/19/2009 14:50:42, 4659712 bytes
WHQL Logo'd: Yes
WHQL Date Stamp:
Device Identifier: {D7B71EE2-2BF8-11CF-C372-4E23A1C2CA35}
Vendor ID: 0x1002
Device ID: 0x68B8
SubSys ID: 0x03441043
Revision ID: 0x0000
Driver Strong Name: oem7.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_Evergreen:8.670.0.0:pci\ven_1002&dev_68b8
Rank Of Driver: 00E62001
Video Accel: ModeMPEG2_A ModeMPEG2_C
Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
D3D9 Overlay: Not Supported
DXVA-HD: Not Supported
DDraw Status: Enabled
D3D Status: Enabled
AGP Status: Enabled

-------------
Sound Devices
-------------
Description: Luidsprekers (Realtek High Definition Audio)
Default Sound Playback: Yes
Default Voice Playback: Yes
Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_14627586&REV_1000
Manufacturer ID: 1
Product ID: 100
Type: WDM
Driver Name: RTKVHD64.sys
Driver Version: 6.00.0001.6013 (English)
Driver Attributes: Final Retail
WHQL Logo'd: Yes
Date and Size: 12/25/2009 12:41:34, 2229664 bytes
Other Files:
Driver Provider: Realtek Semiconductor Corp.
HW Accel Level: Basic
Cap Flags: 0xF1F
Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
HW Memory: 0
Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No

Description: Realtek Digital Output (Realtek High Definition Audio)
Default Sound Playback: No
Default Voice Playback: No
Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0889&SUBSYS_14627586&REV_1000
Manufacturer ID: 1
Product ID: 100
Type: WDM
Driver Name: RTKVHD64.sys
Driver Version: 6.00.0001.6013 (English)
Driver Attributes: Final Retail
WHQL Logo'd: Yes
Date and Size: 12/25/2009 12:41:34, 2229664 bytes
Other Files:
Driver Provider: Realtek Semiconductor Corp.
HW Accel Level: Basic
Cap Flags: 0xF1F
Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
HW Memory: 0
Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No

---------------------
Sound Capture Devices
---------------------
Description: Microfoon (Realtek High Definition Audio)
Default Sound Capture: Yes
Default Voice Capture: Yes
Driver Name: RTKVHD64.sys
Driver Version: 6.00.0001.6013 (English)
Driver Attributes: Final Retail
Date and Size: 12/25/2009 12:41:34, 2229664 bytes
Cap Flags: 0x1
Format Flags: 0xFFFFF

-------------------
DirectInput Devices
-------------------
Device Name: Muis
Attached: 1
Controller ID: n/a
Vendor/Product ID: n/a
FF Driver: n/a

Device Name: Toetsenbord
Attached: 1
Controller ID: n/a
Vendor/Product ID: n/a
FF Driver: n/a

Device Name: Microsoft Wireless Optical Desktop® 2.10
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x045E, 0x009D
FF Driver: n/a

Device Name: Microsoft Wireless Optical Desktop® 2.10
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x045E, 0x009D
FF Driver: n/a

Device Name: Microsoft Wireless Optical Desktop® 2.10
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x045E, 0x009D
FF Driver: n/a

Poll w/ Interrupt: No

-----------
USB Devices
-----------
+ USB-hoofdhub
| Vendor/Product ID: 0x8086, 0x3B3C
| Matching Device ID: usb\root_hub20
| Service: usbhub
| Driver: usbhub.sys, 4/2/2010 17:04:10, 343040 bytes
| Driver: usbd.sys, 7/14/2009 02:06:23, 7936 bytes
|
+-+ Generic USB Hub
| | Vendor/Product ID: 0x8087, 0x0020
| | Location: Port_#0001.Hub_#0001
| | Matching Device ID: usb\class_09
| | Service: usbhub
| | Driver: usbhub.sys, 4/2/2010 17:04:10, 343040 bytes

----------------
Gameport Devices
----------------

------------
PS/2 Devices
------------
+ Microsoft USB Dual Receiver Wireless Keyboard (IntelliType Pro)
| Vendor/Product ID: 0x045E, 0x009D
| Matching Device ID: hid\vid_045e&pid_009d&mi_00
| Service: kbdhid
| Driver: kbdhid.sys, 7/14/2009 02:00:20, 33280 bytes
| Driver: kbdclass.sys, 7/14/2009 03:48:04, 50768 bytes
|
+ Toetsenbordstuurprogramma voor Terminal Server
| Matching Device ID: root\rdp_kbd
| Upper Filters: kbdclass
| Service: TermDD
| Driver: i8042prt.sys, 7/14/2009 01:19:57, 105472 bytes
| Driver: kbdclass.sys, 7/14/2009 03:48:04, 50768 bytes
|
+ Microsoft USB Dual Receiver Wireless Mouse (IntelliPoint)
| Vendor/Product ID: 0x045E, 0x009D
| Matching Device ID: hid\vid_045e&pid_009d&mi_01&col02
| Upper Filters: Point64
| Service: mouhid
| Driver: point64k.sys, 5/9/2009 03:14:24, 33160 bytes
| Driver: mouhid.sys, 7/14/2009 02:00:20, 31232 bytes
| Driver: mouclass.sys, 7/14/2009 03:48:27, 49216 bytes
|
+ Muisstuurprogramma voor Terminal Server
| Matching Device ID: root\rdp_mou
| Upper Filters: mouclass
| Service: TermDD
| Driver: termdd.sys, 7/14/2009 03:45:55, 62544 bytes
| Driver: sermouse.sys, 7/14/2009 02:00:20, 26624 bytes
| Driver: mouclass.sys, 7/14/2009 03:48:27, 49216 bytes

------------------------
Disk & DVD/CD-ROM Drives
------------------------
Drive: C:
Free Space: 198.6 GB
Total Space: 299.9 GB
File System: NTFS
Model: Hitachi HDS721010CLA332 ATA Device

Drive: D:
Model: Optiarc DVD RW AD-5260S ATA Device
Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7600.20595 (Dutch), 4/2/2010 17:06:24, 147456 bytes

--------------
System Devices
--------------
Name: Intel(R) 5 Series/3400 Series Chipset Family 4 port Serial ATA Storage Controller - 3B20
Device ID: PCI\VEN_8086&DEV_3B20&SUBSYS_75861462&REV_06\3&11583659&0&FA
Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.01.7600.16385 (English), 7/14/2009 03:45:45, 12352 bytes
Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (Dutch), 7/14/2009 03:45:46, 48720 bytes
Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 03:52:21, 24128 bytes
Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7600.16385 (Dutch), 7/14/2009 03:52:21, 155728 bytes

Name: High Definition Audio-besturing
Device ID: PCI\VEN_1002&DEV_AA58&SUBSYS_AA581043&REV_00\4&117151B5&0&0108
Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7600.16385 (Dutch), 7/14/2009 02:06:13, 122368 bytes

Name: High Definition Audio-besturing
Device ID: PCI\VEN_8086&DEV_3B56&SUBSYS_75861462&REV_06\3&11583659&0&D8
Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7600.16385 (Dutch), 7/14/2009 02:06:13, 122368 bytes

Name: Intel(R) P55 Express Chipset LPC Interface Controller - 3B02
Device ID: PCI\VEN_8086&DEV_3B02&SUBSYS_75861462&REV_06\3&11583659&0&F8
Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 03:48:27, 15424 bytes

Name: ASUS EAH5770 Series
Device ID: PCI\VEN_1002&DEV_68B8&SUBSYS_03441043&REV_00\4&117151B5&0&0008
Driver: C:\Windows\system32\DRIVERS\atikmdag.sys, 8.01.0001.0973 (English), 10/19/2009 15:50:12, 6098432 bytes
Driver: C:\Windows\system32\DRIVERS\ati2erec.dll, 1.00.0000.0019 (English), 10/19/2009 14:10:50, 53248 bytes
Driver: C:\Windows\system32\atiumd64.dll, 8.14.0010.0708 (English), 10/19/2009 14:50:42, 4659712 bytes
Driver: C:\Windows\system32\atiumd6a.dll, 8.14.0010.0239 (English), 10/19/2009 14:44:30, 2588672 bytes
Driver: C:\Windows\system32\atitmm64.dll, 6.14.0011.0022 (English), 10/19/2009 15:16:20, 120320 bytes
Driver: C:\Windows\system32\atiicdxx.dat, 9/1/2009 08:55:54, 195855 bytes
Driver: C:\Windows\system32\amdpcom64.dll, 8.14.0010.0023 (English), 10/19/2009 14:26:22, 53248 bytes
Driver: C:\Windows\system32\atimpc64.dll, 8.14.0010.0023 (English), 10/19/2009 14:26:22, 53248 bytes
Driver: C:\Windows\system32\atiadlxx.dll, 6.14.0010.1053 (English), 10/19/2009 14:25:52, 302592 bytes
Driver: C:\Windows\system32\atiumd6a.cap, 10/19/2009 14:42:08, 391520 bytes
Driver: C:\Windows\system32\atimuixx.dll, 6.14.0010.1001 (English), 10/19/2009 15:15:34, 12288 bytes
Driver: C:\Windows\system32\atiesrxx.exe, 6.14.0011.1046 (English), 10/19/2009 15:17:42, 202752 bytes
Driver: C:\Windows\system32\atieclxx.exe, 6.14.0011.1046 (English), 10/19/2009 15:18:16, 436736 bytes
Driver: C:\Windows\system32\atipdl64.dll, 6.14.0010.2561 (English), 10/19/2009 15:16:02, 421376 bytes
Driver: C:\Windows\system32\atiedu64.dll, 6.14.0010.2514 (English), 10/19/2009 15:15:28, 59392 bytes
Driver: C:\Windows\system32\ATIDEMGX.dll, 2.00.3579.38353 (Dutch), 10/19/2009 15:18:28, 446464 bytes
Driver: C:\Windows\system32\atio6axx.dll, 6.14.0010.9115 (English), 10/19/2009 15:08:48, 17198592 bytes
Driver: C:\Windows\system32\aticaldd64.dll, 6.14.0010.0467 (English), 10/19/2009 14:21:40, 4635136 bytes
Driver: C:\Windows\system32\aticalrt64.dll, 6.14.0010.0467 (English), 10/19/2009 14:22:10, 43008 bytes
Driver: C:\Windows\system32\aticalcl64.dll, 6.14.0010.0467 (English), 10/19/2009 14:21:56, 39936 bytes
Driver: C:\Windows\system32\atibtmon.exe, 2.00.0000.0000 (English), 5/11/2009 10:35:28, 118784 bytes
Driver: C:\Windows\system32\atidxx64.dll, 8.17.0010.0240 (English), 10/19/2009 15:04:52, 3623936 bytes
Driver: C:\Windows\SysWOW64\atiumdag.dll, 8.14.0010.0708 (English), 10/19/2009 14:56:22, 3601920 bytes
Driver: C:\Windows\SysWOW64\atiumdva.dll, 8.14.0010.0239 (English), 10/19/2009 14:38:34, 2898944 bytes
Driver: C:\Windows\SysWOW64\amdpcom32.dll, 8.14.0010.0023 (English), 10/19/2009 14:26:16, 52224 bytes
Driver: C:\Windows\SysWOW64\atimpc32.dll, 8.14.0010.0023 (English), 10/19/2009 14:26:16, 52224 bytes
Driver: C:\Windows\SysWOW64\atiadlxy.dll, 6.14.0010.1053 (English), 10/19/2009 14:25:46, 208896 bytes
Driver: C:\Windows\SysWOW64\atiumdva.cap, 10/19/2009 14:38:10, 391520 bytes
Driver: C:\Windows\SysWOW64\atipdlxx.dll, 6.14.0010.2561 (English), 10/19/2009 15:15:54, 356352 bytes
Driver: C:\Windows\SysWOW64\Oemdspif.dll, 6.15.0006.0006 (English), 10/19/2009 15:15:40, 274432 bytes
Driver: C:\Windows\SysWOW64\ati2edxx.dll, 6.14.0010.2514 (English), 10/19/2009 15:15:24, 43520 bytes
Driver: C:\Windows\SysWOW64\atioglxx.dll, 6.14.0010.9115 (English), 10/19/2009 14:45:18, 12963840 bytes
Driver: C:\Windows\SysWOW64\atidxx32.dll, 8.17.0010.0240 (English), 10/19/2009 15:12:38, 3034624 bytes
Driver: C:\Windows\SysWOW64\aticaldd.dll, 6.14.0010.0467 (English), 10/19/2009 14:20:42, 3543040 bytes
Driver: C:\Windows\SysWOW64\aticalrt.dll, 6.14.0010.0467 (English), 10/19/2009 14:22:08, 53248 bytes
Driver: C:\Windows\SysWOW64\aticalcl.dll, 6.14.0010.0467 (English), 10/19/2009 14:21:52, 53248 bytes
Driver: C:\Windows\atiogl.xml, 9/8/2009 16:14:38, 18618 bytes
Driver: C:\Windows\system32\ATIODCLI.exe, 1.00.0000.0001 (English), 2/3/2009 09:52:06, 51200 bytes
Driver: C:\Windows\system32\ATIODE.exe, 1.00.0000.0001 (English), 2/18/2009 06:55:22, 332288 bytes

Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 4 - 3B48
Device ID: PCI\VEN_8086&DEV_3B48&SUBSYS_75861462&REV_06\3&11583659&0&E3
Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.20551 (Dutch), 4/2/2010 16:21:37, 183880 bytes

Name: Intel(R) 82801 PCI Bridge - 244E
Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_75861462&REV_A6\3&11583659&0&F0
Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.20551 (Dutch), 4/2/2010 16:21:37, 183880 bytes

Name: Intel(R) 5 Series/3400 Series Chipset Family PCI Express Root Port 1 - 3B42
Device ID: PCI\VEN_8086&DEV_3B42&SUBSYS_75861462&REV_06\3&11583659&0&E0
Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.20551 (Dutch), 4/2/2010 16:21:37, 183880 bytes

Name: Intel(R) processor PCI Express Root Port - 0041
Device ID: PCI\VEN_8086&DEV_0041&SUBSYS_75861462&REV_12\3&11583659&0&08
Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.20551 (Dutch), 4/2/2010 16:21:37, 183880 bytes

Name: Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C
Device ID: PCI\VEN_8086&DEV_3B3C&SUBSYS_75861462&REV_06\3&11583659&0&D0
Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7600.20589 (English), 4/2/2010 17:04:09, 51712 bytes
Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Dutch), 7/14/2009 02:06:31, 324608 bytes
Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.20589 (Dutch), 4/2/2010 17:04:10, 343040 bytes

Name: Intel(R) processor DRAM Controller - 0040
Device ID: PCI\VEN_8086&DEV_0040&SUBSYS_75861462&REV_12\3&11583659&0&00
Driver: n/a

Name: Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34
Device ID: PCI\VEN_8086&DEV_3B34&SUBSYS_75861462&REV_06\3&11583659&0&E8
Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7600.20589 (English), 4/2/2010 17:04:09, 51712 bytes
Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Dutch), 7/14/2009 02:06:31, 324608 bytes
Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.20589 (Dutch), 4/2/2010 17:04:10, 343040 bytes

Name: Standaard Dual Channel PCI IDE Controller
Device ID: PCI\VEN_197B&DEV_2363&SUBSYS_75861462&REV_03\4&2630D046&0&00E3
Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.01.7600.16385 (English), 7/14/2009 03:45:45, 12352 bytes
Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (Dutch), 7/14/2009 03:45:46, 48720 bytes
Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 03:52:21, 24128 bytes
Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7600.16385 (Dutch), 7/14/2009 03:52:21, 155728 bytes

Name: Intel(R) 5 Series/3400 Series Chipset Family SMBus Controller - 3B30
Device ID: PCI\VEN_8086&DEV_3B30&SUBSYS_75861462&REV_06\3&11583659&0&FB
Driver: n/a

Name: Sweex LW312 Wireless 300N PCI Card
Device ID: PCI\VEN_1814&DEV_0701&SUBSYS_27601814&REV_00\4&EE57028&0&00F0
Driver: C:\Windows\system32\DRIVERS\netr28x.sys, 3.00.0002.0000 (English), 6/19/2009 14:56:08, 712704 bytes
Driver: C:\Windows\system32\drivers\vwifibus.sys, 6.01.7600.16385 (Dutch), 7/14/2009 02:07:21, 24576 bytes
Driver: C:\Windows\system32\RaCoInstx.dll, 1.00.0006.0002 (English), 6/18/2009 19:07:52, 305152 bytes
Driver: C:\Windows\system32\RaCoInst.dat, 6/18/2009 19:07:52, 13931 bytes

Name: Intel(R) 5 Series/3400 Series Chipset Family 2 port Serial ATA Storage Controller - 3B26
Device ID: PCI\VEN_8086&DEV_3B26&SUBSYS_75861462&REV_06\3&11583659&0&FD
Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.01.7600.16385 (English), 7/14/2009 03:45:45, 12352 bytes
Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (Dutch), 7/14/2009 03:45:46, 48720 bytes
Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 03:52:21, 24128 bytes
Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7600.16385 (Dutch), 7/14/2009 03:52:21, 155728 bytes

Name: Realtek PCIe GBE Family Controller
Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_75861462&REV_03\4&7C74F7B&0&00E0
Driver: n/a

------------------
DirectShow Filters
------------------

DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16385
Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.16490
WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.16385
AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16490
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16490
SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7600.16385
Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16590
StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.16385
Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.16385
MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7600.16385
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16490
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
ATI MPEG File Writer,0x00200000,1,0,atimpenc64.dll,10.11.0000.41019
ATI MPEG Video Decoder,0x005fffff,1,2,atimpenc64.dll,10.11.0000.41019
MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.16590
Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.16385
Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16490
DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16490
Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16385
ATI MPEG Audio Encoder,0x00200000,1,1,atimpenc64.dll,10.11.0000.41019
ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16490
Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16385
Line 21 Decoder,0x00600000,1,1,,
Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16490
Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16490
ATI MPEG Video Encoder,0x00200000,1,1,atimpenc64.dll,10.11.0000.41019
ATI MPEG Multiplexer,0x00200000,2,1,atimpenc64.dll,10.11.0000.41019
VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.16385
File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
ATI Video Scaler Filter,0x00200000,1,1,atimpenc64.dll,10.11.0000.41019
DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.20584
Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.16385
Overlay Mixer2,0x00200000,1,1,,
RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600.16590
DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.16385
Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.16385
StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7600.16385
Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
Overlay Mixer,0x00200000,0,0,,
AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16490
NetBridge,0x00200000,2,0,netbridge.dll,6.01.7600.16385
AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16490
Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16490
ATI Video Rotation Filter,0x00200000,1,1,atimpenc64.dll,10.11.0000.41019
Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600.16385
AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16490
File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16490
File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16490
Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7600.16385
AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.20574
BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16490

WDM Streaming Tee/Splitter Devices:
Tee/Sink-to-Sink-conversieprogramma,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.16490

Audio Compressors:
WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
ATI MPEG Audio Encoder,0x00200000,1,1,atimpenc64.dll,10.11.0000.41019
IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
PCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7600.16490
CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7600.16490

Audio Capture Sources:
Microfoon (Realtek High Definit,0x00200000,0,0,qcap.dll,6.06.7600.16385

PBDA CP Filters:
PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16590
PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16590
PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16590

Midi Renderers:
Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7600.16490

WDM Streaming Capture Devices:
,0x00000000,0,0,,
Realtek HD Audio CD input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Line input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
ASUS GSB,0x00200000,0,1,ksproxy.ax,6.01.7600.16385
ASUS GSB,0x00200000,0,1,ksproxy.ax,6.01.7600.16385

WDM Streaming Rendering Devices:
ATI HD Audio rear output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

BDA Network Providers:
Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16590

Video Capture Sources:
ASUS GSB,0x00200000,0,1,ksproxy.ax,6.01.7600.16385
ASUS GSB,0x00200000,0,1,ksproxy.ax,6.01.7600.16385

Multi-Instance Capable VBI Codecs:
VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385

BDA Transport Information Renderers:
BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385

BDA CP/CA Filters:
Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16385
Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16385
PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16385
XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16385

WDM Streaming Communication Transforms:
Tee/Sink-to-Sink-conversieprogramma,0x00200000,1,1,ksproxy.ax,6.01.7600.16385

Audio Renderers:
Luidsprekers (Realtek High Defi,0x00200000,1,0,quartz.dll,6.06.7600.16490
Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16490
DirectSound: Luidsprekers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7600.16490
DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7600.16490
Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7600.16490

---------------
EVR Power Information
---------------
Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
Quality Flags: 2576
Enabled:
Force throttling
Allow half deinterlace
Allow scaling
Decode Power Usage: 100
Balanced Flags: 1424
Enabled:
Force throttling
Allow batching
Force half deinterlace
Force scaling
Decode Power Usage: 50
PowerFlags: 1424
Enabled:
Force throttling
Allow batching
Force half deinterlace
Force scaling
Decode Power Usage: 0

Larisa
08.11.2010, 22:46
Can I install Virtual Windows XP and then install Gothic 2 onm that?

You can try, what's to loose?

C-Hawk
08.11.2010, 23:07
The only thing is, it won't work: Problem (http://social.answers.microsoft.com/Forums/en-US/xpinstall/thread/e2503f7b-991c-4ee7-ab29-d97708278720?prof=required)

Lerri
16.08.2011, 22:32
Although no one has written here in a long time, I do have an issue. Whenever I try to insert CD2 it doesn't recognize it, no matter which version I use, and it is very f.cking infuriating to go through all this trouble for some damn game even if it is gothic. Spent hours searching for a solution and found this extractor, and it's all nice and well with disk 1, but at 2 it won't recognize it. So please, help.:mad:

Larisa
16.08.2011, 23:01
Although no one has written here in a long time, I do have an issue. Whenever I try to insert CD2 it doesn't recognize it, no matter which version I use, and it is very f.cking infuriating to go through all this trouble for some damn game even if it is gothic. Spent hours searching for a solution and found this extractor, and it's all nice and well with disk 1, but at 2 it won't recognize it. So please, help.:mad:

Welcome here §wink

Do this:


Put the disk 1 in the drive.

Click on Start, then on the "Run" menu.
Now you should have a new window, in there you should write cmd and press the OK button.

Now a black window with white text should appear.
In there write E: and press Enter.

Now write again: dir /s /og > c:\list.txt and press Enter.

If everything is correctly done until now, you should have a list.txt file in drive C:
Open that file with notepad or another program for text editing.
Select all the text in that file, copy it (by pressing Ctrl+C or right click and select Copy), make a new post here, in this thread, and paste the text (by pressing Ctrl+V or right click and select Paste).

^ Basically, a newbie-level explanation that I need a listing of your disks so I can figure out what to do. You should adapt that "E:" to your computer, in your case the optical drive might have a different letter. It would be better to do this for each CD than the game has and not just disk 2.

Lerri
17.08.2011, 06:26
It's telling me access is denied.

Larisa
17.08.2011, 12:21
Hmm... I would guess it's because of that writing command to c:

Do you have Vista or 7?
Do you have other partitions except the C: drive?

Lerri
17.08.2011, 12:37
Win 7, yes, I do have another one, shall I do the same only set it to the other partition ?

Larisa
17.08.2011, 13:21
Yeah, try with dir /s /og > D:\list.txt

Or whatever the letter is for the other partition.

C-Hawk
16.11.2011, 21:01
I wanted to play Gothic 2 again, I started G2Notr: black screen no sound.
I searched on the forum, not much info.

I checked this (http://forum.worldofplayers.de/forum/threads/706839-Gothic-2-extractor/page4?highlight=extractor) thread tough: I deleted the Gothic 2 files, I re-installed Gothic 2 via the extractor, otherwise I got the ''insufficient memory''-error.

Installation went well, but when I start Gothic 2, I get a 'javascript-pop-up' which says: message01
What to do, I have Win 7 64bit.

I really hate my expensive PC right now.
I want a five year old Win XP computer worth €200 that DOES work. I do have one though, bad graphics, but I will check later if it'll work.

I tried to install my game in ''Virtual PC 2007 SP1''
When starting the setup(no extractor), I get a black screen (like in .cmd) and it's like someone pressed <enter> four times, and left the I there - flashing on/out.
I could get a screenshot ofc.
There's no text or whatsoever. If I want it to end, I need to quit the virtual machine, will this delete the screenshot?

I downloaded the extractor luckily in the Virtual PC, but I haven't yet been able to download WinRar.

Edit: irrelevant: I cant download the latest Firefox in the VPC, because of Win98.
Edit2: I can't download WinRar; I even tried 3 Win98 versions. Others require a better OS.