Echo4Romeo_Tempest
Member-
Content Count
4 -
Joined
-
Last visited
-
Medals
Everything posted by Echo4Romeo_Tempest
-
Problem while using Arma2P
Echo4Romeo_Tempest replied to glowbal's topic in ARMA 2 & OA : TERRAIN - (Visitor)
Thank you! CNTRL+C didn't do anything for me, but removing the file did. Thanks again! -
Problem while using Arma2P
Echo4Romeo_Tempest replied to glowbal's topic in ARMA 2 & OA : TERRAIN - (Visitor)
Thanks for the response. Yeah, I went ahead and set my rootpath to syswow64 and it worked fine as well so I guess it was just that I didn't have a rootpath set up in my environment variables. I finally got the script running but as I said above I keep getting an out of memory error. I've tried running it as admin to no avail, but I'll play with my UAC, which should already be off, and see if I can get it to work. I read in the bug tracker on devheaven that someone had a similiar issue a year ago and using the -F parameter to ignore errors allowed Arma2p.cmd to ignore the errors and move past it instead of stopping. I'm not very familiar with command line usage though, is there a way to use this parameter with the script .cmd/batch file? Here are my computer specs if it matters - Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110622-1506) System Manufacturer: INTEL_ System Model: DQ45CB__ BIOS: BIOS Date: 02/08/08 17:50:03 Ver: 08.00.10 Processor: Pentium® Dual-Core CPU E6800 @ 3.33GHz (2 CPUs), ~3.3GHz Memory: 8192MB RAM Available OS Memory: 8124MB RAM Page File: 1919MB used, 14325MB available Windows Dir: C:\Windows DirectX Version: DirectX 11 Card name: NVIDIA GeForce GTX 560 Display Memory: 4062 MB Dedicated Memory: 2014 MB Shared Memory: 2047 MB Current Mode: 1920 x 1080 (32 bit) (60Hz) -
Problem while using Arma2P
Echo4Romeo_Tempest replied to glowbal's topic in ARMA 2 & OA : TERRAIN - (Visitor)
64-bit windows 7. Issue ended up being that the .cmd was looking in the wrong place for the Reg Query command (looking in syswow64 instead of sys32.) Solution posted in the original post. I'll probably be back with another issue. ---------- Post added at 08:28 PM ---------- Previous post was at 08:21 PM ---------- So as soon as I fixed that problem here is another - I get a few minutes through the unpacking and get this error: DePbo No Memory Fail I have 8 gigs of ram! Though my resource monitor is telling me 6 gigs of it are currently Cached. Is my system just refusing to free up that cached data for newer more relevant data or is it refusing to write it somewhere. I have no idea. Apparently it keeps getting caught up on extracting dubbing.bpo. Which has been a known problem so I'm trying to find the solution. -
Problem while using Arma2P
Echo4Romeo_Tempest replied to glowbal's topic in ARMA 2 & OA : TERRAIN - (Visitor)
**EDIT I figured out the problem but I'll leave the post here in case others find it useful. Apparently the Reg Query command is stored in sys32. I'm running 64 bit windows 7, so the .cmd file was looking for Reg Query in my SysWow64 folder (I assume) which does not "include" that command. To fix this I had to set my syspath to sys32. To do this: -Click the Start Panel -Highlight Computer then right click it -Select Properties -Select Advanced System Settings in window that pops up after last step -In the advanced tab select Environment Variables -In the bottom window, labeled "System Variables" find "Path" Variable, select it and click the "Edit" button -Add the following line, in hole, to the beginning of the "Variable Name" box: %SystemRoot%;%SystemRoot%\System32; ------------------------------------------------------------------------------------------------------------------------------------------------ ORIGINAL POST: Hi all, I've been trying to get this to work for hours and keep running into one issue after another. I have made a clean drive (D: in my case.) then installed the tools to D:/BISTools and now have a P: drive in D:/BISTools that has the contents of the ArmaAWork folder inside of it (that is, D:/BISTools/ArmaAWork . . . P:/ is of course a virtual drive which is actually the ArmaA work folder...) So I think I have all that right. I'm currently trying to run Arma2P.2.5.1 from a folder inside of P:\ but keep getting this error: 'REG' is not recognized as an internal or external command, operable program or batch file And then says Fail and Press any key to Continue. Opening up the .cmd file and doing a search for Reg, I found it most often used in this sort of statement: For /F "Tokens=2* skip=2" %%C In ([b]'REG[/b] QUERY "HKLM\SOFTWARE\Bohemia Interactive Studio\ArmA 2" /v "MAIN"') Do (set _ARMA2PATH=%%D) Now I'm not a programmer , but I can assume Reg Query is supposed to be locating a registry key? HKLM\SOFTWARE\Bohemia Interactive Studio\ArmA 2 in this case. Is there a syntax error in the code? Looking it up I found the proper syntax is reg query <KeyName> [{/v <ValueName> | /ve}] [/s] [/se <Separator>] [/f <Data>] [{/k | /d}] [/c] [/e] [/t <Type>] [/z]