topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday April 16, 2024, 6:03 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Multi Open Folder in a Local Area Network  (Read 7089 times)

Contro

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 3,940
    • View Profile
    • Donate to Member
Multi Open Folder in a Local Area Network
« on: July 24, 2011, 03:12 PM »
Multi Open folder.
I would like a program to open a folder in one of my pc :

Example :

c:\folder1\folder2

and the rest of my pc in the local area network ?

By example

c:\folder1\folder2

\\pm-7fg7fjkl432a\folder1\folder2
\\jose-a0555092b\folder1\folder2

where pm-7fg7fjkl432a is the equipment name.

Best Regards


A sort of a rules folder launcher.
May be with possible selection of several rules pre-established

I usually have the same folders in my three pc, but not all folders.

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: Multi Open Folder in a Local Area Network
« Reply #1 on: July 24, 2011, 04:10 PM »
As I mentioned in my other post, you can simply use a batch file or some AHK script:

AutoHotkey
Code: Autohotkey [Select]
  1. Run, %A_WinDir%\explorer.exe /e,c:\folder1\folder2
  2. Run, %A_WinDir%\explorer.exe /e,\\pm-7fg7fjkl432a\folder1\folder2
  3. ; Add more here...

Batch file
Code: Text [Select]
  1. explorer.exe /e,c:\folder1\folder2
  2. explorer.exe /e,\\pm-7fg7fjkl432a\folder1\folder2
  3. ; Add more here...

Contro

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 3,940
    • View Profile
    • Donate to Member
Re: Multi Open Folder in a Local Area Network
« Reply #2 on: July 24, 2011, 05:10 PM »
But skwire there are not always the same folder.
I need firs select the local folder or introduce manually. Save to a memory and then open the local and the rest of terminals.

and may be that a folder don't exist in one or several terminals. The most common case is parallel folders in each pc, but is not always in that way.


« Last Edit: July 24, 2011, 05:23 PM by Contro »

Contro

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 3,940
    • View Profile
    • Donate to Member
Re: Multi Open Folder in a Local Area Network
« Reply #3 on: July 27, 2011, 05:20 PM »
 :)

I'll try on my best.

Best Regards

Contro

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 3,940
    • View Profile
    • Donate to Member
Re: Multi Open Folder in a Local Area Network
« Reply #4 on: May 04, 2012, 06:40 AM »
This target is finished . I get a script from Miguel Mollejo splendid for that purpose made with the brother language AutoIt.
Usually I synchronize the folders with a sync program, but sometimes I need an inmediate solution (I have many disk and GB....). Then I use this script and give me splendid results.
Now I am in the public library, but if anyone answer this post I will post the program of my friend Miguel Mollejo Sánchez.

Open all identical path in the local area network and give messages if couldn't. And insist each certain times.

Best Regards.

 :-*