Macintosh alias vs windows shortcut on CD

I have a CD containing a snapshot of a website for archival purposes. It has to be readable on a windows machine. To make it easier for users to access I have created an alias that points to a file index.html. The alias is in the root directory of the CD. All the contents of the website are in a folder also located in the root directory. The CD has been burned successfully (using toast) and is fully functional on a mac. On a windows machine the alias appears as a zero byte file and no longer links to index.html. Open the folder - all the files work. I have found out that mac alias and windows shortcut work differently and this seems to be the cause of the problem.
I know I could refer users to the original file using a readme.html. I also know I could move index.html to the root directory but this would require a lot of links to be re-coded.
Is there any way to make a shortcut that windows will recognise on a mac? This would be my preferred solution.

Does sticking to web safe colours make a difference?
No. That's just a set of colors that is evenly distributed across the color space. There's really nothing special about the colors themselves; they aren't magic or better than any others.

Similar Messages

  • I tried opening my Mac files to windows by using Macdriver 8, however upon opening the file my previous mac folders were converted to windows shortcuts and upon returning to my mac pc, all my folders has a .lnk file extension which I cannot open.

    I tried opening my Mac files to windows by using Macdriver 8, however upon opening the file my previous mac folders were converted to windows shortcuts and upon returning to my mac pc, all my folders has a .lnk file extension which I cannot open. Need help very badly since the hard drive I use is the only back up I have for my very old pics. Thank you...

    Backup with cloning software your HD to have an exact copy of it as it is.
    Use this methodology to recover your partition.
    Have fun,
    Leo

  • Windows Shortcut Keys no longer working!?!

    Hello All,
    Framemaker 8(p277) has recently decided that after a period of use, standard windows shortcuts will stop working (ctrl+v / ctrl+c / ctrl+z!!! etc..) along with keystroke / character repeats.
    This only occurs within framemaker. Windows short cuts and keystroke repeat still function correctly in all other apps running at the same time
    right-clicking and selecting copy / paste / etc.. still works.
    Un-installing and re-installing the most recent framemaker patch seemed to temporarily fix the problem, however, it has now returned.
    I'm running xp Sp3, fully patched...
    and the repetitious arrow-key bashing that I'm now having to do is slowly driving my co-workers INSANE :)
    please help!
    brad

    Brad:
    My experience with the problem is that it's been around since version 5 of the product.
    I've observed that the problem seems to occur if I double-click on an embedded graphic, thus opening it in a third-party graphics program (PaintShop Pro 7). That is to say that on days when I don't work with graphics, I can run FrameMaker for hours and never have any CTRL key problems.
    When the problem does occur, I must perform one of the following to restore function-key operation, in order of preference:
    Exit and restart FrameMaker (easiest but doesn't always work)
    Log off and then back in to Windows (somewhat more time consuming, works almost all of the time)
    Reboot (time consuming, but always works)
    That's my experience. Other forum regulars have had different experiences...
    Cheers & hope this helps,
    Riley

  • Local JNLP filename is truncated in windows shortcut

    Greetings,
    I've got a problem with JNLP shortcut paths getting truncated. I'm running Windows XPsp2 as the client with Java 1.5.0.10.
    The web URL I'm accessing is dynamically generated, and is apparently getting too long to be handled. I'm passing only the necessary data keys within an encoded URL, something like:
    http://server.domain.com:port/application/jnlp/5t-cjxLGtlRl4ZbRO.zIYu61f32GNDSvTby.W8mvgHhCQVHbbRnoSjLdvCqz9u-KmOAAq9uJYDe9i1RgD7kMuAg-udKBBq5xK.O5Od.uhx9ASvD.JnPMUImR9WMl-iUfFtH38.c04u2M1055QiOL8A__
    and using a URI mapping within my web-app for +/jnlp/*+ to get the request into my servlet for decoding and dynamic JNLP generation. Within the servlet I decode the keys and, based on other data retrievals, generate the JNLP file for that user.
    Everything works very smoothly, as long as the encoded string doesn't exceed a certain length.
    Whatever the length of the URL, the application launches from the web with no problem. But, my application needs to support being launched offline, and so it I have to set to create windows shortcuts when launched.
    When the URL length gets to be too long, the shortcuts fail to find the icon, and when launched from the shortcut generates the following error:
    An error occurred while launching/running the application.
    Category: Invalid Argument Error
    Could not load file/URL specified: C:\Documents and Settings\user12\Application Data\Sun\Java\Deployment\cache\javaws\http\Dserver.domain.com\Pport\DMapplication\DMjnlp\AM5t-cjxLGtlRl4ZbRO.zIYu61f32GNDSvTby.W8mvgHhCQVHbbRnoSjLdvCqz9u-KmOAAq9uJYDe9i1RgD7kMuAg-udKBBq5xK.O5Od.uhx9ASvD.JWith the last, in this case 39, characters truncated off the string.
    I'm not sure if this is a JavaWeb limitation, where the javaws application can only handle a directory path up to 252 characters.
    Or (in my opinion more likely) this is a Microsoft limitation, where the full shortcut target can't exceed 293 characters.
    While I've been able to manually to (on my development system) recreate these shortcuts as:
    Target: C:\WINDOWS\system32\javaws.exe -offline "5t-cjxLGtlRl4ZbRO.zIYu61f32GNDSvTby.W8mvgHhCQVHbbRnoSjLdvCqz9u-KmOAAq9uJYDe9i1RgD7kMuAg-udKBBq5xK.O5Od.uhx9ASvD.JnPMUImR9WMl-iUfFtH38.c04u2M1055QiOL8A__"
    Start in: C:\Documents and Settings\user12\Application Data\Sun\Java\Deployment\cache\javaws\http\Dserver.domain.com\Pport\DMapplication\DMjnlp
    And the shortcuts function as expected. But, I clearly won't have that level of control over the end user's system configurations.
    Has anyone else encountered/overcome this limitation?
    And if so what was the workaround?
    Thanks.

    One ugly hack that I've found can be made to work, as part of my web start application, using the http://www.optimumx.com/download/ shortcut.exe executable, and dancing around the system properties:
    System.getProperty ("os.name", "").toLowerCase ().matches ("^.*windows*.$");
    System.getProperty ("user.home", ".").replace ('\\', '/');
    System.getProperty ("java.io.tmpdir", userHome).replace ('\\', '/');
    Since, I'm running with a signed application for other reasons, I can extract the the executable as a resource from the jar file, play it out into the temp directory, and use it to update the shrotcuts, resetting the parameters, start in directory, and icon locations of the *.lnk file.
    But, this is a very ugly workaround for what looks like a simple buffer overflow problem.

  • What is the process of the SunMSCAPI getting a cert's alias from windows?

    Hi:
    This problem comes from a older problem ( http://forums.sun.com/thread.jspa?threadID=5374874&tstart=0 ) .
    Unfortunately, this problem seems like not a popular problem :-(
    Is there anybody can access the souce code of SunMSCAPI, and give me some hint about the process of SunMSCAPI getting a cert's alias from windows's keystore by calling CryptoAPI? So, I can simulate the process to find out the problem's reason.
    Thanks a lot.

    http://hg.openjdk.java.net/jdk7/tl/jdk/file/2dae30c4d687/src/windows/native/sun/security/mscapi/
    http://hg.openjdk.java.net/jdk7/tl/jdk/file/2dae30c4d687/src/windows/classes/sun/security/mscapi/

  • JFileChooser and windows shortcuts (lnk files)

    Is there any way to get JFileChooser to follow windows shortcuts? I am using 1.4.1_01 on XP, which is full of "helpful" shortcuts to things like shared picture folders, etc, which JFileChooser chokes on.
    I would think Sun would implement support for the underlying lnk files, since this is an OS issue.

    Ok, I found a bug report for this, with a workaround hack. I'll post it here for anyone who is interested.
    http://developer.java.sun.com/developer/bugParade/bugs/4356160.html

  • HT1343 Where can I modify or disable system/windows shortcuts ?

    Hello,
    I am currently looking for a way to modify or disable windows shortcuts, I am talking about shortcuts such as : Command-H (hide the application)
    I searched on internet, went to an Apple Store where a gut told me it was in some .plist but I couldn't find it (since he just said me that and leave, apparently as a developer I should figure it out myself)
    I also deactivated every single sohrtcut I could find (except 4 for my desktops)  in System Prefrences > Keyboard > Shortcuts.
    So I am asking here, is there a file where I can configure these shortcuts? And if yes, where it is and what's its name?
    I am really looking forward to this because I don't use those shortcuts but I would like to make them do other things.
    By the way here is my configuration :
    MacBookPro (late 2011)
    Mac OS X Lion 10.7.5 (11G63)
    Best regards,
    Adrien.

    Window>Brushes

  • Ip alias on windows 98/Me

    It's possible to create ip alias on windows 98/Me ?
    If yes, anyone know how to do it?

    If by IP alias you mean spoofing IP address, then it mostly up to your ISP. Java does not support low level IP stack hacking, which would allow you change the IP address, but you could write a native program with Java interface to do the task.
    Although 98/Me does support raw sockets, which allow spoofing. But I hope you do understand that the reply packets won't come pack to your computer unless you really do own that IP. Although in some cases, like HUB-network, you can sniff the packets..
    Anyway, I don't want to give you more clues before I know to what purpose you need the IP 'aliasing'.

  • Robo-form toolbar add-on causing windows shortcut error messages

    Robo-form Toolbar Add-on causing Windows Shortcut error messages! HELP

    The local PC needs the
    u2022 CRRuntime_12_2_mb.exe
    u2022 SAPCrystalSetup.exe
    and dot net 3.5 installed.
    There are very good install instructions in the package, it installs differently to other add ons on the client side.

  • Create Windows Shortcuts

    With ZfD 7 I was able to add Windows application shortcuts in the the Application Object. I've been searching on how to do this with ZCM bundles and so far I'm stumped. I don't see any actions related to creating a shortcut, nor can I find any reference to shortcuts in the documentation.
    I've also tried uploading a shortcut file to the server, but the ZCC simple follows the path within the shortcut, attempting to upload the files the shortcut targets instead.
    Has anyone figured out a way to do this? Am I missing something obvious?

    Well, We all have those moments.
    One of my favorites was the time I spend close to an hour trying to get a PC
    to recognize an external USB HDD.
    After Giving UP, I asked my boss.
    It took him about 3.2 Seconds..............You have it plugged into the
    wrong computer........Doh!!!
    (In my defense, there were 4 stacked on top of each other, but
    still..............)
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Support Forums Volunteer Sysop
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.
    "seuferer" <[email protected]> wrote in message
    news:[email protected]...
    >
    > Jeeesh!! Do I feel stupid! Where's my DOS command book?:)
    >
    > Thanks for the help.
    >
    > David
    >
    >
    >
    > Craig Wilson;1544116 Wrote:
    >> From the Command Prompt just rename the file form "ShortCut.LNK" to
    >> "ShortCut.ZZZ"
    >>
    >> --
    >> Craig Wilson - MCNE, MCSE, CCNA
    >> Novell Support Forums Volunteer Sysop
    >>
    >> Novell does not officially monitor these forums.
    >>
    >> Suggestions/Opinions/Statements made by me are solely my own.
    >> These thoughts may not be shared by either Novell or any rational
    >> human.
    >>
    >> "seuferer" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >
    >> > Sorry if this is a stupid question, but how do you change the .lnk
    >> > extension?
    >> > I've read about a reg hack to get the .lnk to show up. Is this what
    >> I
    >> > have
    >> > to do?
    >> >
    >> >
    >> >
    >> >
    >> >
    >> >
    >> >
    >> > Craig Wilson;1532885 Wrote:
    >> >> This issue has been discussed.
    >> >> I believe it's being fixed in ZCM 10.1.0, but I'm not 100%
    >> positive.
    >> >>
    >> >> For now, you can do the following.
    >> >>
    >> >> Rename the file form MyShortCut.LNK to MyShortCut.ZZZ and add the
    >> file
    >> >> via
    >> >> the "install file" option in the bundle.
    >> >> After this is created, go into the "Install File" action and change
    >> >> the
    >> >> "Destination File Name" from MyShortCut.ZZZ back to "MyShortCut.LNK
    >> >>
    >> >> --
    >> >> Craig Wilson - MCNE, MCSE, CCNA
    >> >> Novell Support Forums Volunteer Sysop
    >> >>
    >> >> Novell does not officially monitor these forums.
    >> >>
    >> >> Suggestions/Opinions/Statements made by me are solely my own.
    >> >> These thoughts may not be shared by either Novell or any rational
    >> >> human.
    >> >>
    >> >> "mjgalloway" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> >
    >> >> > With ZfD 7 I was able to add Windows application shortcuts in the
    >> >> the
    >> >> > Application Object. I've been searching on how to do this with
    >> ZCM
    >> >> > bundles and so far I'm stumped. I don't see any actions related
    >> to
    >> >> > creating a shortcut, nor can I find any reference to shortcuts in
    >> >> the
    >> >> > documentation.
    >> >> >
    >> >> > I've also tried uploading a shortcut file to the server, but the
    >> ZCC
    >> >> > simple follows the path within the shortcut, attempting to upload
    >> >> the
    >> >> > files the shortcut targets instead.
    >> >> >
    >> >> > Has anyone figured out a way to do this? Am I missing something
    >> >> > obvious?
    >> >> >
    >> >> >
    >> >> > --
    >> >> > mjgalloway
    >> >> >
    >> >>
    >> ------------------------------------------------------------------------
    >> >> > mjgalloway's Profile: 'NOVELL FORUMS - View Profile: mjgalloway'
    >> >> ('NOVELL FORUMS - View Profile: mjgalloway'
    >> (http://forums.novell.com/member.php?userid=4877))
    >> >> > View this thread: 'Create Windows Shortcuts - NOVELL FORUMS'
    >> >> ('Create Windows Shortcuts - NOVELL FORUMS'
    >> (http://forums.novell.com/showthread.php?t=323354))
    >> >> >
    >> >
    >> >
    >> > --
    >> > seuferer
    >> >
    >> ------------------------------------------------------------------------
    >> > seuferer's Profile: 'NOVELL FORUMS - View Profile: seuferer'
    >> (http://forums.novell.com/member.php?userid=15474)
    >> > View this thread: 'Create Windows Shortcuts - NOVELL FORUMS'
    >> (http://forums.novell.com/showthread.php?t=323354)
    >> >
    >
    >
    > --
    > seuferer
    > ------------------------------------------------------------------------
    > seuferer's Profile: http://forums.novell.com/member.php?userid=15474
    > View this thread: http://forums.novell.com/showthread.php?t=323354
    >

  • Create system alias (Mac) or shortcut (Windows)

    Hi,
    is there any way to create such "files" from an Air Application ?
    I think there's no API able to do this. But maybe is it possible using raw binary data writing ?
    Thank you.

    How did you remove Windows 7? If you did not use Boot Camp Assistant you have messed up your drive and will have to start over by erasing and formatting your drive then reinstall OSx and and Windows 8.

  • Running a java class from a windows shortcut?

    I am currently running a program I have written from a batch file for which I have created a shortcut. I have recently however modified my shortcut to include a variable that i pass to the main method in the program through the batch file - all this works fine.
    It did however get me thinking - why can't I do away with the batch file??
    Below is the batch file code that loads my software:
    Echo Off
    CLS
    SET CLASSPATH=.;"C:\Program Files\Java\j2re1.4.2_03\bin"
    SET Path="C:\Program Files\Java\j2re1.4.2_03\bin"
    C:
    CD\
    CD "Program Files\My App"
    start "My App" javaw My_App %1
    And the two shortcut strings that call the batch file:
    "C:\Program Files\My App\My_App.bat" var1
    "C:\Program Files\My App\My_App.bat" var2
    What I have been trying to do however, is do all of the above from the shortcut
    I have added the following code to a shortcut:
    Target:
    C:\WINDOWS\system32\cmd.exe /c SET CLASSPATH=.;"C:\Program Files\Java\j2re1.4.2_03\bin" && SET Path="C:\Program Files\Java\j2re1.4.2_03\bin" && start javaw "My App" My_App
    Start In:
    "C:\Program Files\My App"
    All of the relevant paths are set correctly, and it calls the main java class file from the directory from where it resides, but I get a popup error message stating:
    Java Virtual Machine
    Error: Could not fing Java 2 Runtime Environment.
    Has anybody got any ideas on how to fix this please??

    Either I'm misunderstanding, or ?
    You don't need to set classpath if all you need for a classpath is the directory that contains the classfile - the Start in combined with -cp . // that's -cp followed by a periodsets the classpath to that value, and Windows will create a fully qualified path to javaw.
    You entries in the shortcut shouldn't have to be any more than what I typed.

  • Unable to Access Macintosh HD from Windows 8.1 Boot Camp

    I recently installed a 1TB Seagate SSHD on MacBook Pro and partitioned 80GB to run Windows. I am running Mavericks on my MBP and successfully installed Windows 8.1 using Boot Camp but soon found out that 80GB was WAY too small. Everything had been running very smooth and I was able, at the time, to access  files on both sides of the partition while in either operating system (by access I mean that I could open up any file and copy it to the current hard drive I was on and then open it with the respectful program, i.e. While running in Windows, copy a word document saved on my Macintosh HD partition and save the copy to the Windows desktop and then open it with word).  I then used WinClone 4 to clone Boot Camp and repartition my Hard Drive to allocate 500GB to each partition. Everything seemed to restore perfectly except that my Macintosh HD does not show up when I go to "This PC" even though the partition is visible under the "Disk Manager" (although it shows up as unnamed and just says Healthy (Primary Partition)). Also, there is an error visible when I go to Administrative Tools>Computer Management>Other Devices>Coprocessor>Properties and under "Device Status" it says "The drivers for this device are not installed. (Code 28) There are no compatible drivers for this device". I read in another forum that someone with a similar problem updated the NVIDIA Driver to fix the problem so I updated to the latest (331.82) driver but this did not solve the problem. How can I get Windows to recognize the Macintosh HD partition and fix this driver error? Are these two related? Any help/advice would be greatly appreciated! Please be gently, I'm still learning a lot as I go. Thank you for your time.

    The thing that is confusing me is that I was able to do this (access and save a copy of Macintosh HD files while on the Windows partition) after my initial install of Windows 8.1 with Boot Camp. Disregarding trying to access individual files, shouldn't I still be able to see the Macintosh HD partition in the "This PC" (Formerly My Computer) folder? While on my Macintosh HD parition I can see the Windows partition and access all the files and even save individual files to the mac side, I just can't seem to do it the other way around.

  • "Move focus to next window" shortcut in full screen mode

    Does anyone know how to use the "Move focus to next window" sortcut when in "full screen" mode?
    When using a smaller screen (Macbook Air) full screen mode is a nice idea but I keep turning it off becauase the normal shortcut doesn't work.
    Any pointers in the right direction would be much appreciated.
    Cheers

    I can't duplicate your problem with my setup. Try deleting the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder and see if that will help. Often a damaged or corrupted pref file will cause some very unusual performance issues with iPhoto.
    Also you can try rebuilding the library while selecting just the option to rebuild the database.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • English Lightroom on German Windows: Shortcuts not working

    Hello,
    I have installed the English version of Lightroom 3 on a machine running a German Windows 7.
    Normally I was using the following shortcuts on a German keyboard for rotating images in the library module:
    Ctrl + .
    Ctrl + ,
    Since some update of Lightroom these shortcuts are not working anymore. I can use them only if switching Lightroom's default language to German. However I'd like to use the English version.
    The English shortcuts Ctrl + [ and Ctrl + [ are not working either on a German keyboard.
    Has anybody experienced the same?
    Robert

    Peter
    I followed the directions on that post and it worked...!
    here is the instructions
    "Looks like InDesign is getting confused between British and US  English - probably it got installed as British English, then decided it  rather be US English. Why that'd be - no idea.
    So, here's what you can try if your shortcut keys suddenly disappear on you:
    1) Navigate to the Adobe InDesign CS4 folder
    2) Go into the Presets folder
    3) Go into the InDesign Shortcut Sets folder
    4)  If you see a folder called 'en_GB', but no folder called 'en_US', make a  copy of the en_GB and rename the copy to en_US. Possibly the reverse  could also happen - you see en_US, you might want to try and copy it to  en_GB."
    Thank you so much to you and Kris for this helpful information.

Maybe you are looking for

  • How can I get a full song to play completely before it stops in the first 20 seconds?

    Has this happen to anybody else?

  • PHP/MySQL access denied=restricted+area

    We just migrated to a new OS X Tiger running WebSTAR 5.4, w/MySQL 4.1.x, PHP 4.4.0 (I'm a bit vague on the MySQL version and am having trouble logging in via terminal to check). All my previous login pages set up using DWMX 2004 now refuse to redirec

  • Grey out fields in selection screen

    experts help needed i want to display in the selection screen like this sales org                k918 doc type                 zior  divison                   10 distribution channel    20 file name      /info/ordersinfo/india/incomming/order/order.t

  • Report for Master Recipe

    Hi All; Is there any report apart from C251 which would give the deatils of the Master Recipe or to be more specific we need to download the Inspection characteristics from the Master Recipe. Regards

  • Using public wireless network, security settings?

    Hi there, I'm a new Mac user. If I'm using my MacBook Pro on a public wireless network, do I need to change any security settings to prevent other users from accessing my documents/hard drive etc? Thanks in advance. M.