Tue, Jan 7, 11:26 AM CST

Renderosity Forums / Poser - OFFICIAL



Welcome to the Poser - OFFICIAL Forum

Forum Coordinators: RedPhantom

Poser - OFFICIAL F.A.Q (Last Updated: 2025 Jan 07 11:07 am)



Subject: question about using a mac runtime on a PC


estherau ( ) posted Mon, 20 June 2005 at 8:39 AM · edited Sat, 17 August 2024 at 2:18 AM

I ran it through the mac to PC converter, installed poser 5 on the PC then copied in the poser 4 runtime without any of the poser program files just the library and geometry, but for some reason when I choose a figure in poser on the PC it cannot find the geometry file and when I try to locate it from within poser it just can't see it. Any ideas? Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


Estruch ( ) posted Mon, 20 June 2005 at 8:44 AM

I shopping one Pc the last day of this month and I have interest in this question.


estherau ( ) posted Mon, 20 June 2005 at 8:57 AM

Hi, I think maybe I did something stupid. I'm just reloading the geometries folder now, so I'll let you know if it works. Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


estherau ( ) posted Mon, 20 June 2005 at 9:38 AM

I think I broke the PC. I was copying a very large folder of characters into a folder that had some folders with same name, and the thing just crashed. WEll either I hurt it, or funny crashes in the middle of moving folders is part of having a PC. Anyway it's self restarting. Think I'll go to bed and try again tomorrow. Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


lmckenzie ( ) posted Mon, 20 June 2005 at 10:37 AM

What OS? I've seen this happen several times under 98/SE when doing a large copy operation. I don't think I've ever seen it of 2000 and I imagine XP should be the same. If it happens again, try copying fewer folders/files at a time. On 98, it seerm to be more related to the number of files than the total size of the copy. You might also try turning off anti-virus--just a wild guess. Worst case, you might try booting into "safe mode" and copying them from there with a minimum of loaded drivers, etc. Again, just a guess.

"Democracy is a pathetic belief in the collective wisdom of individual ignorance." - H. L. Mencken


estherau ( ) posted Mon, 20 June 2005 at 8:30 PM

Hi thanks for that - it's XP. Yes, it even crashed copy a library file that I had on a DVD just now. I'm trying it again, but if it doesn't work then I'll start turning stuff off if I can figure out how to do that. Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


nruddock ( ) posted Tue, 21 June 2005 at 4:00 PM

Copys that involve a huge number of files are best done using xcopy from the command line as Explorer just doesn't handle them well.


estherau ( ) posted Tue, 21 June 2005 at 6:46 PM

tell me more - i don't even know where to find the command line. love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


nruddock ( ) posted Tue, 21 June 2005 at 8:01 PM

Click the Start button, select Run and then type "cmd" into the text box and press Enter.

When the command window appears type "xcopy /?" to get the help.
You can also find this information in the Windows Help, click Start button, select Help and search for xcopy.

To summarise, there are options to specify if / how subdirectories and their contents are copied.


estherau ( ) posted Wed, 22 June 2005 at 1:37 AM

thankyou - will try one more time the normal way and if it doesn't work will try xcopy. love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


estherau ( ) posted Wed, 22 June 2005 at 8:36 AM

I think I need to use this as I keep getting error messages when I try to copy the files manually. There's certain ones that just won't copy. I looked at the help thingy but I'm scared. Can you tell me how I just copy from source to destination. Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


nruddock ( ) posted Wed, 22 June 2005 at 1:39 PM

For this example I'll assume you want to copy files from the directory C:here to the directory C:there
Just replace the example paths with your real ones.

Copy only files not subdirectories

xcopy C:here C:there

Copy only files and all subdirectories (and their contents) xcopy C:here C:there /s /e

If you are copying over a network add /z

If some of the files already exist in C:there and you don't want to have to confirm overwrite for each one add /y

If you want to check what files will get copied add /l

and remove when your sure that you have the correct values.

The other two most useful options are /m

and /d:date

Check the help for an explaination of the last two.


estherau ( ) posted Wed, 22 June 2005 at 7:28 PM

thanks - I'll try it. Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


lmckenzie ( ) posted Wed, 22 June 2005 at 10:09 PM

If you're having problems with specific files, I'm wondering if it may be something about the filenames. The MacOS and Windows have different characters that aren't allowed in filenames. Windows won't accept a filename with any of the following: /:*?"<>| I'm not sure what the result would be if you tried to copy such a file.

"Democracy is a pathetic belief in the collective wisdom of individual ignorance." - H. L. Mencken


estherau ( ) posted Thu, 23 June 2005 at 4:25 AM

Also maybe length of some of my file names? WEll anyway I tried Xcopy but maybe I did something wrong - I put spaces as shown where you put spaces, but I got an error message, so I'm just back to copying a little at a time and leaving out the files that give error messages. It will take me awhile to finish I feel. Has anyone made a little GUI for Xcopy somewhere. That would be easier for me just to drag and drop. Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


lmckenzie ( ) posted Thu, 23 June 2005 at 7:09 AM

Length shouldn't be a problem. Windows can have up to 255 characters I believe which should be as much/more than MacOS. xcopy J:MacFiles*.* C:Poser /s Should work--don't know what your source paths look like for the Mac files--that's the way it works in windows. One possible problem is spaces in the path: xcopy J:Program FilesMetacreationsPoser 4*.* will error. You need to use quoues to handle the spaces: xcopy "J:Program FilesMetacreationsPoser 4". If you're really brave/desperate, I'll post a script to semi-automate the process. No drag and drop, you'll have to paste the paths manually but it should handle the quotes and the trailing 's for you so you would only have to copy the paths directly from Explorer's address box and paste them in the prompts. WARNING: I've only tested this briefly. It didn't destroy anything on my system but use at your own risk. It's quick and dirty--test it first on something non-critical.

"Democracy is a pathetic belief in the collective wisdom of individual ignorance." - H. L. Mencken


lmckenzie ( ) posted Thu, 23 June 2005 at 7:15 AM

You'll have to have scripting enabled on your system for this to work. Create a new text file on your desktop and paste the text into it. Save and rename the file to Xcopy.vbs. Ignore the warning about changing the filetype. I don't know how scripting runs on XP if you will get security warnings. Double click to run or right click and select open if double click opens it in Notepad. '----------------------------------------------------------

' VBScript GUI for XCopy

Dim YesNo
Dim mySource
Dim MyDest
Dim MyCmd
Dim WshShell

mySource = InputBox("Enter Source Path","Xcopy")
If mySource = "" then WScript.Quit

myDest = InputBox("Enter Destination Path","Xcopy")
If mySource = "" then WScript.Quit

YesNo= MsgBox("Copy SubDirectories?",4,"Xcopy")

If Right(myDest,1)  <> "" Then myDest = myDest & ""

If Right(mySource,1) <> "" Then mySource = mySource & ""

myDest = Chr(34) & myDest & Chr(34)
MySource = Chr(34) & MySource & Chr(34)
MySource = MySource & "*.*"
MyCmd = "XCopy " & MySource & " " & MyDest

If YesNo = 6 then MyCmd = MyCmd & " /s"

YesNo = MsgBox("Run " & vbCRLF & MyCmd & "?",4,"XCopy")

    If YesNo = 6 then
 
        Set WshShell = CreateObject("WScript.Shell")

        WshShell.Run MyCmd,,vbTrue
        
        Set WshShell = Nothing
        
    End If

'----------------------------------------------------------

"Democracy is a pathetic belief in the collective wisdom of individual ignorance." - H. L. Mencken


estherau ( ) posted Sat, 25 June 2005 at 3:57 AM

Ooh, that all looks scary but I will keep that script. and promise I will eventually try it when I'm more familiar with the PC. Thank you so much for going to all this trouble for me! I managed to copy almost everything from my DVD backups of poser, but it took a long while, and certain files were not accepted. So I've got a runtime on my puter. I just tried poser 5 and it asked me to locate the geometry so something is obviously amiss. I have to try and restart, and also just check my folders and make sure everything is in the right place. I had no idea it would be so difficult to copy large quantities of stuff. Ihate the way that if it can't copy one file, it just stops and doesn't try and copy all the other files in the folder and all the other folders. then at the end it could just tell me which files it couldn't do. that would be so much easier. Love esther

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


nruddock ( ) posted Sat, 25 June 2005 at 4:41 AM

Use the option "/c" to ignore errors.


estherau ( ) posted Sat, 25 June 2005 at 4:52 AM

aha!

MY ONLINE COMIC IS NOW LIVE

I aim to update it about once a month.  Oh, and it's free!


Privacy Notice

This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.