aylward

New Member
Joined
Feb 9, 2010
Messages
8
I've used a program for video editing and creating projects in Windows XP.
After moving the completed projects and their associated media to a new windows7 pc; the links to the media are no longer accepted by my application.
THe old paths to the media would have been something like "%userprofile%\My Documents\my videos" IN windows 7; I've dropped the "my videos" contents from xp into "%userprofile%\My videos"
Anyone know how I can fool my program into getting the media with the old PAth on my windows 7 pc? I actually thought this was why the hidden shortcuts were here in windows7; but am guessing that my older program is too stupid to understand and use the shortcuts that windows 7 has provided. (Even though my program says it's supported by Vista.)
My alternative is to re-map manually all of my 100 projects to their media counter-parts and I'm really not excited about doing that.
 

Solution
To work around the issue of your video editing program not recognizing the paths to the media on your new Windows 7 PC, you can try the following steps to potentially fool the program into recognizing the media with the old path: 1. Create Symbolic Links: Symbolic links can be used to redirect the program to the new location of the media while still using the old path. Here's how you can create a symbolic link: - Open Command Prompt as an administrator. - Use the mklink command to create a symbolic link. For example, to create a link from the old path to the new location:
Code:
 mklink /D "C:\%userprofile%\My Documents\my videos" "C:\%userprofile%\My videos"
- This command will create a symbolic link named "my videos" in...
To work around the issue of your video editing program not recognizing the paths to the media on your new Windows 7 PC, you can try the following steps to potentially fool the program into recognizing the media with the old path: 1. Create Symbolic Links: Symbolic links can be used to redirect the program to the new location of the media while still using the old path. Here's how you can create a symbolic link: - Open Command Prompt as an administrator. - Use the mklink command to create a symbolic link. For example, to create a link from the old path to the new location:
Code:
 mklink /D "C:\%userprofile%\My Documents\my videos" "C:\%userprofile%\My videos"
- This command will create a symbolic link named "my videos" in the old path location that points to the new location. 2. Use Third-Party Tools: There are third-party tools available that can help you create symbolic links more easily with a graphical interface. Tools like Link Shell Extension or Junction Link Magic can simplify the process. 3. Run the Program as Administrator: Try running your video editing program with administrator privileges. Sometimes, programs require elevated permissions to access linked directories properly. 4. Compatibility Mode: You mentioned that your program claims to be supported by Vista. You can try running the program in compatibility mode for Windows Vista. Right-click on the program's shortcut, go to Properties, and set the compatibility mode to Windows Vista. By using symbolic links or adjusting permissions, you might be able to trick your program into accessing the media files in their new location while using the old path. This could save you from manually remapping all 100 projects to their media counterparts.
 

Solution
Back
Top