MSFN Forum: renaming files in CMD scripts - MSFN Forum

Jump to content


  • 4 Pages +
  • 1
  • 2
  • 3
  • 4
  • You cannot start a new topic
  • You cannot reply to this topic

renaming files in CMD scripts Rate Topic: -----

#41 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,364
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 22 February 2012 - 05:35 PM

If that's all you want to do, here's a quick untested script.
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
FOR /F "TOKENS=*" %%A IN (
	'DIR/B/A-D^|FINDSTR/BERIC:"GEN[ ][0-9][ ].*[.]HTML"'
) DO (
	FOR /F "TOKENS=*" %%B IN (
		'FINDSTR/RIC:"[.]PDF[\"][ ]*CLASS^=\"ULINE\"" "%%A"'
	) DO (
		SET _L=%%B
		FOR /F "USEBACKQ TOKENS=2,3 DELIMS==" %%C IN ('%%B') DO (
			SET _P=%%C
			SET _D=%%D
			FOR /F "USEBACKQ" %%E IN ('!_P:/^=\!') DO (
				SET _P=%%~nxE
				SET _X=%%~xE
			)
			FOR /F "USEBACKQ DELIMS=<" %%E IN ('!_D:*GEN^=!') DO (
				SET _D=GEN%%E!_X!
			)
			IF EXIST "!_P!" ECHO=REN "!_P!" "!_D!"
		)
	)
)
PAUSE
Remove "ECHO=" from the bottom IF EXIST line and the PAUSE line if you're happy with the output.

I do not give permission for this script to be posted on another site.


#42 User is offline   Aacini 

  • Group: Members
  • Posts: 2
  • Joined: 21-February 12
  • OS:XP Home
  • Country: Country Flag

Posted 22 February 2012 - 07:40 PM

Hi. The big problem with my code is that in this line:

for /F "delims=" %%c in ('findstr /C:"<a>" "%source%" ^| findstr /C:"%pdf%"') do ( 


the start of tag must be "<a " instead of "<a>", as Yzöwl noted:

View PostYzöwl, on 22 February 2012 - 06:14 AM, said:

... then the following will always fail:
findstr /C:"<a>"

I had fixed this problem in my original post above.

As I said in the original site, I don't know much about .PDF files and this detail was confused because the tag <a> was mentioned there. However, I noted this point when I indicated that I tested this program with this "GEN 0 GENERAL.html" example file:

Line one
<a>href="/Dokumenter/EK_GEN_0_X_en.pdf" class="uline"><b>GEN 0.X Preface</b></a>
Line three
<a>href="/Dokumenter/EK_GEN_0_1_en.pdf" class="uline"><b>GEN 0.1 Preface</b></a>
Line five



I apologize for any trouble caused by this detail...

#43 User is offline   CoffeeFiend 

  • Coffee Aficionado
  • Group: Super Moderator
  • Posts: 5,399
  • Joined: 14-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 22 February 2012 - 08:50 PM

Now that it might already be solved (haven't actually tried any solution but I trust Yzöwl), here's a PowerShell one-liner that does the job (i.e. looks inside all the htm files, figures out the old PDF name as downloaded, and renames all of them based on the title of the anchor tag -- assuming all htm and pdf files are in the same directory):
gc *.htm|?{$_ -match [regex]'".*/(.*pdf)".*?b>(.*?)<'}|%{ren $matches[1] ($matches[2]+".pdf")}


5 minutes and 94 characters total :whistle:

#44 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 23 February 2012 - 06:56 AM

View PostCoffeeFiend, on 22 February 2012 - 08:50 PM, said:

5 minutes and 94 characters total :whistle:


Also interesting solution.

#45 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,364
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 23 February 2012 - 09:21 AM

Hello!
How about thanking me for my effort and providing feedback to the Topic, (instead of acknowledging someone elses solution which you've already stated you are not interested in).

#46 User is offline   bphlpt 

  • MSFN Expert
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,082
  • Joined: 12-May 07

Posted 23 February 2012 - 01:39 PM

I would be interested in seeing a complete solution in PowerShell and one in CMD script, the OP's original effort, with or without using external apps such as wget - Start with nothing downloaded, you have the link as provided earlier - http://www.slv.dk/Do.../Collection-357 - and you end up with the PDF files stored locally and named correctly. That is the overall goal, isn't it?

I think it would be very interesting and instructive to be able to compare the various solutions to the vbscript solution already provided. I don't know anything about PowerShell, so that would be a real learning experience for me. It would help me figure out which part does what. For that matter, if anyone wants to volunteer a solution in any other programming language, even better. That would definitely fit in with the theme of this section of the board.

Cheers and Regards

This post has been edited by bphlpt: 23 February 2012 - 01:43 PM


#47 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 23 February 2012 - 05:24 PM

I thank to all who have brought some solution and some code here. Sure. One day more of patience for today I hadn't time to devote to the code.

bphlpt - yeah, it is the goal, to download files and rename them. But I personally more like individual scripts, every one servers to its own purpose. Because there are different situations, when I download different "folders" of pdf documents. So some files need to be moved, some need to be renamed, some need html documentation, some need no documentation. So this is something individual according what I download. I would be more glad if I would need not these scripts, but I don't know about such browser addon, that would enable you to download more levels of documents, create folders and move documents to folders according organization on html page, and rename folders by chapters or by their purpose and title in html page.

This post has been edited by DosCode: 24 February 2012 - 01:28 PM


#48 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 11,455
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 24 February 2012 - 03:02 AM

View PostDosCode, on 23 February 2012 - 05:24 PM, said:

..... but I don't know about such browser addon, that would enable you to download more levels of documents, create folders and move documents to folders according organization on html page, and rename folders by chapters or by their purpose and title in html page.

Just for the record, those "browser addons" do not exist (AFAIK) but javascript does :whistle: .

UNrelated example:
http://weblogs.asp.n...2/13/72404.aspx

Additionally:
http://wiki.imacros....oducing_iMacros

jaclaz

#49 User is offline   CoffeeFiend 

  • Coffee Aficionado
  • Group: Super Moderator
  • Posts: 5,399
  • Joined: 14-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 24 February 2012 - 06:23 AM

View Postjaclaz, on 24 February 2012 - 03:02 AM, said:

but javascript does :whistle: .

Yes. And using Javascript, you could use a XMLHttpRequest or ServerXMLHTTP object to get the pages and then parse them using regular expressions. Now if only someone here thought of that before... :whistle:

#50 User is offline   bphlpt 

  • MSFN Expert
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,082
  • Joined: 12-May 07

Posted 24 February 2012 - 08:19 AM

From what I remember about the differences between vbscript and Javascript I think the solutions would be very similar, correct?

So how about it CoffeFiend? You want to show a complete PowerShell solution? And jaclaz, would you mind showing a complete CMD script solution for comparison?

Cheers and Regards

#51 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 24 February 2012 - 08:25 AM

View Postjaclaz, on 21 February 2012 - 10:46 AM, said:

@echo off
setlocal EnableDelayedExpansion
set "source=GEN 0 GENERAL.html"
echo In file:%source%



FOR /F "tokens=* delims=" %%A IN ('FIND ".pdf" "%source%" ^|FIND "href"^|FIND "class="') DO (




This is a sub-function. This tells me that you did not set %pdf% file to search for (in the html file). What do you try to do in the loop? Do you try to find all pfds that are in html document? Because what I tried to do was to find one certain pdf, that is in the html document. You can start either by searching pdfs, so you should set the name of pdf file. This instructs where the anchor and title is placed.

But as a complete code, that should find all pdfs and for each pdf to open the html document which is associated with the pdf. So if your code as sub-function should work fine, you must define pdf file you look for.

Late answer to bphlpt.

View Postbphlpt, on 21 February 2012 - 11:24 AM, said:

DosCode - No offense was meant, and I'm a CMD script fan.


„There are definitely cases, IMO, where CMD script is faster and more flexible than other options. “
That is not the reason why I’m interested in CMD. It is much simpler to me against VBS. VBS is Object orientated language and so is more harder to learn. CMD with connection with gnuwin results in something what seems to me similar to bash. So that is the reason for been it favourite for me.

„CoffeeFiend and I don't need to continue on. “
I have finished so I also need not to continue.

„Our two posts do not distract from your overall goal as much as your posts which have been scattered over multiple threads and have yet to come up with a working solution. “

So to you. You have seen I was distracted enough to overlooked two post. I explained that before.

„You have been asking about bits and pieces for a week now, and we didn't even know what your overall goal was until 18 hours ago. “
If I would told you what was my overall goal, than I would spent a lot of time with long time explaining and I would not get answers to my original questions which were the individual solutions of certain situations. I did not want you just all solved instead me. The second point is that is was simpler to me just to make what I want by myself, and then to paste the code and wait your reactions. This is just the way of demonstration. That's better then lots of words. Since the start I see I have learned something, I moved from nothing to something. And that’s what I personally feel to be satisfying. Also I see no reason why I should spend 24 hours 7 days week on forum, I don't mind this took more then week. So maybe you had wait, but I see no problem in it.

Late answer to Aacini's code

View PostAacini, on 22 February 2012 - 02:14 AM, said:

Hi. I am newbie at this forum. I was invited here by DosCode to post my last solution to this problem that was developed in detail in other site. So here it is:

Yes, works but there should be some condition, because it returns title "" and twice title ,,GEN 0.1 Preface", but you need not to do it, because I have already my code completed, so as you could see in the debuger's code version.

Replay to Yzöwl's CMD code

View PostYzöwl, on 22 February 2012 - 05:35 PM, said:

If that's all you want to do, here's a quick untested script.


This script prints

REN "gen_0_3.pdf" "GEN 0.3 Record of AIP Supplements.pdf"
REN "gen_2_1.pdf" "GEN 2.1 Measuring System, Aircraft Markings, Holidays.pdf"
REN "gen_4_1.pdf" "GEN 4.1 Charges for Aerodromes and Heliports.pdf"
REN "gen_4_2.pdf" "GEN 4.2 Charges for Air Navigation Services.pdf"
Press any key to continue...

So pdfs staring by digit are not listed.

Replay to CoffeeFiend

View PostCoffeeFiend, on 22 February 2012 - 08:50 PM, said:

gc *.htm|?{$_ -match [regex]'".*/(.*pdf)".*?b>(.*?)<'}|%{ren $matches[1] ($matches[2]+".pdf")}




I cursorily searched internet for gnuwin PowerShell binaries but did not find so did not test your code.

This post has been edited by DosCode: 24 February 2012 - 09:38 AM


#52 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 11,455
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 24 February 2012 - 11:54 AM

View PostDosCode, on 24 February 2012 - 08:25 AM, said:

This is a sub-function. This tells me that you did not set %pdf% file to search for (in the html file). What do you try to do in the loop? Do you try to find all pfds that are in html document? Because what I tried to do was to find one certain pdf, that is in the html document. You can start either by searching pdfs, so you should set the name of pdf file. This instructs where the anchor and title is placed.

But as a complete code, that should find all pdfs and for each pdf to open the html document which is associated with the pdf. So if your code as sub-function should work fine, you must define pdf file you look for.


Look, the snippet I posted, when executed on the particular page you mentioned (GEN 0 GENERAL.html) provides this output:

Quote

In file:GEN 0 GENERAL.html

Filename="EK_GEN_0_1_en.pdf"
Filepath="/Dokumenter/dsweb/Get/Document-408/EK_GEN_0_1_en.pdf"
FileTitle=GEN 0.1 Preface
Filename="EK_GEN_0_2_en.pdf"
Filepath="/Dokumenter/dsweb/Get/Document-409/EK_GEN_0_2_en.pdf"
FileTitle=GEN 0.2 Record of AIP Amendments
Filename="gen_0_3.pdf"
Filepath="/Dokumenter/dsweb/Get/Document-410/gen_0_3.pdf"
FileTitle=GEN 0.3 Record of AIP Supplements
Filename="EK_GEN_0_4_en.pdf"
Filepath="/Dokumenter/dsweb/Get/Document-411/EK_GEN_0_4_en.pdf"
FileTitle=GEN 0.4 Checklist of AIP Pages
Filename="EK_GEN_0_5_en.pdf"
Filepath="/Dokumenter/dsweb/Get/Document-412/EK_GEN_0_5_en.pdf"
FileTitle=GEN 0.5 List of Hand Amendments to the AIP
Filename="EK_GEN_0_6_en.pdf"
Filepath="/Dokumenter/dsweb/Get/Document-413/EK_GEN_0_6_en.pdf"
FileTitle=GEN 0.6 Table of Contents to Part 0 and 1


Now this may be in part or totally what you were attempting to do (or could be something else alltogether), but rest assured, that - having written the snippet - I perfectly know not only what it does, but also how it works, and - with all due respect - you don't seem like being in a condition to tell me what I should or must do.

The posted snippet is intended as a mere example of how to do something that is what I have understood (possibly wrongly) from your confusing, mixed up, incomplete description of a goal.

If you state EXACTLY what your goal is (in it's entirety) I may be able to "tune" the above base parsing routine to your requirements (IF I will feel like doing so).

If you prefer my attempt was INSTEAD of correcting your attempts (IMHO using a "wrong" approach to the problem) to provide you with a working example to provide you with some "alternative" ideas (which of course you are perfectly free to use in parts or totally or to completely ignore).

What I find inappropriate is:
  • the lack of even a little "thank you" for the time I spent in attempting to help you (no matter the result)
  • the use of "should" or "must" related to anything I might (or completely fail to) do


jaclaz

#53 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 24 February 2012 - 01:22 PM

View Postjaclaz, on 24 February 2012 - 11:54 AM, said:

Now this may be in part or totally what you were attempting to do (or could be something else alltogether), but rest assured, that - having written the snippet - I perfectly know not only what it does, but also how it works, and - with all due respect - you don't seem like being in a condition to tell me what I should or must do.


Well, then you know better what it does than me and I need not to tell you anything. I checked the code at the start and thought the loop looks for pdfs in html. That's why I asked you if my assumption is right, but you did not answer that question. And I run your code, but the console closed so I see no output. Then if you understand what I wanted to reach, I need not to tell you anything.

View PostDosCode, on 23 February 2012 - 05:24 PM, said:

I thank to all who have brought some solution and some code here.


jaclaz, isn't that what you wanted to hear? I thought your solution simple doesn't work. You don't understand my habits. I usually give thanx when I found some solution for my problem or when I finish my discussion in the thread. So that you don't receive thank doesn't mean you wouldn't receive it later.

This post has been edited by DosCode: 24 February 2012 - 01:41 PM


#54 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 11,455
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 24 February 2012 - 01:31 PM

View PostDosCode, on 24 February 2012 - 01:22 PM, said:

And I run your code, but the console closed so I see no output. Then if you understand what I wanted to reach, I need not to tell you anything.

Are you telling me that you test batch files by double clicking on them? :w00t:

For the record, the proper procedure is normally:
  • open a cmd prompt window
  • navigate to where the batch is stored
  • type in the command line the name of the batch


OR
add a PAUSE statement before the end of the file or before the final GOTO :EOF in "main". :yes:

jaclaz

#55 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 24 February 2012 - 01:51 PM

This is my final solution. It takes cca 20 seconds to rename the files, maybe some of the solutions here mentioned by others could be faster. But I am satisfied, that it works.

@echo off
setlocal EnableDelayedExpansion
for %%P in (*.pdf) do (
  set "pdfFile=%%P"
  set htmlMask="GEN !pdfFile:~0,1! *.html"
  REM echo !htmlMask!
  echo Testing "!pdfFile!": Looking for !htmlMask!
  for %%H in (!htmlMask!) do (
    echo "%%H"
    set "pdf=%%P"
    set "source=%%H"
    call :JUMP
  )
)
)

:JUMP
REM Get title for pdf from html file

rem Process each line in %source% file:
for /F "usebackq delims=" %%c in ("%source%") do (
   set "line=%%c"
   REM Test if the line contains pdf file I look for:
   SET "pdfline=!line:%pdf%=!"
   if not "!pdfline!" == "!line!" (
      REM Test if the pdfline contains tag b
      if not "!pdfline:*><b>=!" == "!pdfline!" (
         cls     
         set "tag=!pdfline:<b>=$!"
         set "tag=!tag:</b>=$!"
         for /F "tokens=2 delims=$" %%b in ("!tag!") do set title=%%b
	 set "title=!title::=-!"
	 set "title=!title:\=-!"
	 set "title=!title:/=-!"
	 set "title=!title:|=-!"
	 set "title=!title:?=-!"
	 set "title=!title:GEN =!"
         echo Title found: "!title!"
	 ren "%%P" "!title!.pdf"
      )
   )
)



Finally I decided to remove the "GEN " prefix in title.

Edit:
I've made some edit of the code, because I found some lines that was unneccesary, but did not test it. I tested the code before and it was really not good, so I made some changes in the code in my PC, but do not give it here, because the circumstances has changed.

This post has been edited by DosCode: 25 February 2012 - 09:11 AM


#56 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 24 February 2012 - 02:00 PM

View Postjaclaz, on 24 February 2012 - 01:31 PM, said:

Are you telling me that you test batch files by double clicking on them? :w00t:
(...)
OR
add a PAUSE statement before the end of the file or before the final GOTO :EOF in "main". :yes:

jaclaz


I just click it. It is more faster. I sometimes run cmd to console but there happens to me I forget to close it so I have 4 or 5 cmd consoles, so more windows opened makes it confusing to orientate so I like it to autoclose. I usually add a pause, but I it could be so that you could use in the code somewhere command to go to end of file. So I did not add it there. You seen that I used pause everywhere. Also I edited the previous post to you, also bad habit.

#57 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,364
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 24 February 2012 - 02:10 PM

View PostDosCode, on 24 February 2012 - 08:25 AM, said:

Replay to Yzöwl's CMD code

View PostYzöwl, on 22 February 2012 - 05:35 PM, said:

If that's all you want to do, here's a quick untested script.


This script prints

REN "gen_0_3.pdf" "GEN 0.3 Record of AIP Supplements.pdf"
REN "gen_2_1.pdf" "GEN 2.1 Measuring System, Aircraft Markings, Holidays.pdf"
REN "gen_4_1.pdf" "GEN 4.1 Charges for Aerodromes and Heliports.pdf"
REN "gen_4_2.pdf" "GEN 4.2 Charges for Air Navigation Services.pdf"
Press any key to continue...

So pdfs staring by digit are not listed.

That's because .pdfs starting with a digit only do so because you've already ran a completely unnecessary script on the files to change their name, that's not my fault, its yours.

I provided code in exact response to the question I asked, (and you answered).

I will certainly not be producing additional code to cater for your inability to use common sense approach to your work nor for you to bastardise into a script as bad as the one you've just posted.

#58 User is offline   CoffeeFiend 

  • Coffee Aficionado
  • Group: Super Moderator
  • Posts: 5,399
  • Joined: 14-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 24 February 2012 - 05:52 PM

View Postbphlpt, on 24 February 2012 - 08:19 AM, said:

From what I remember about the differences between vbscript and Javascript I think the solutions would be very similar, correct?

Indeed. Just look at this previous post and see for yourself. The only real difference in both was that you have to use an enumerator in JScript vs the for each in VBScript. Other than that, JScript has proper error handling i.e. try/catch blocks, vs VBScript's ghetto "on error" abomination (by far the worst I've seen in any programming language ever).

View Postbphlpt, on 24 February 2012 - 08:19 AM, said:

So how about it CoffeFiend? You want to show a complete PowerShell solution

It's mainly a matter of using the DownloadString method of the WebClient class to get the page contents, then piping that to match with a regular expressions like <a.*"(.*?/View/.*?-\d*)"> to have the child pages' URLs. Then You do much of the same: you use WebClient.DownloadString to get the child pages' content, and the regex from my previous post to get the PDFs' URLs, and once more, you use WebClient to download the PDFs, but using the DownloadFile method instead (using the subgroups from the regex matches as URL and file name). I just don't have enough interest in the problem (simply renaming files...) or time to waste to write it again in other languages, sorry.

#59 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 25 February 2012 - 04:22 AM

View PostYzöwl, on 24 February 2012 - 02:10 PM, said:

That's because .pdfs starting with a digit only do so because you've already ran a completely unnecessary script on the files to change their name, that's not my fault, its yours.


I've written that already, but I will recall it to you. It is not a fault! I decided to rename the files (to remove prefix) before I have decided to write script that renames the files according html description.

This post has been edited by DosCode: 25 February 2012 - 06:21 AM


#60 User is offline   DosCode 

  • Newbie
  • Group: Members
  • Posts: 47
  • Joined: 15-February 12
  • OS:none specified
  • Country: Country Flag

Posted 25 February 2012 - 04:30 AM

I tried to do some script to rename pdf files from this site:
http://www.pl-vacc.o...aps&language=en

@echo off
setlocal EnableDelayedExpansion
for %%P in (*.pdf) do (
  set "pdfFile=%%P"
  set "htmlMask=info.htm"

  echo Testing "!pdfFile!": Looking in !htmlMask!
  for %%H in (!htmlMask!) do (
    echo "%%H"
    set "pdf=%%P"
    set "source=%%H"
    call :JUMP
    )
  )
)
)

:JUMP
REM Get title for pdf from html file
rem Process each line in %source% file:
for /F "delims=" %%c in ('find /N "%pdf%" "%source%"') do (
   set "line=%%c"
   REM Test if the line contains pdf file I look for:
   SET "pdfline=!line:%pdf%=!"
   if not "!pdfline!" == "!line!" (
      cls     
      SET "pdfline=!pdfline:&nbsp;= !"
      SET "pdfline=!pdfline:</a>= !"

      SET "pdfline=!pdfline:*>=!"
      SET "pdfline=!pdfline:*>=!"
      SET "pdfline=!pdfline:*>=!"
      SET "pdfline=!pdfline:*>=!"
      SET "title=!pdfline:*>=!"

      set "title=!title::=-!"
      set "title=!title:\=-!"
      set "title=!title:/=-!"
      set "title=!title:|=-!"
      set "title=!title:?=-!"
      set "title=!title:^==-!"
      set "title=!title:&gt;=-!"
      set "title=!title:&lt;=-!"
      ren "%%P" "!title!.pdf"
   )
)



This action was fast.

This post has been edited by DosCode: 25 February 2012 - 09:01 AM


Share this topic:


  • 4 Pages +
  • 1
  • 2
  • 3
  • 4
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy