Jump to content











Photo
* * * * - 2 votes

MistyPE

winpe10 winpe5 winpe4 winpe3 winpe2 winpe

  • This topic is locked This topic is locked
384 replies to this topic

#51 Wonko the Sane

Wonko the Sane

    The Finder

  • Advanced user
  • 16066 posts
  • Location:The Outside of the Asylum (gate is closed)
  •  
    Italy

Posted 15 October 2013 - 01:21 PM

Thanks Wonko,
 
I knew there was an easier method and you have put me on the right track. Slight change to your code



SETLOCAL ENABLEEXTENSIONS
FOR /F "skip=2 tokens=3" %%? IN ('REG QUERY "HKU\.DEFAULT\Control Panel\International" /v Locale') DO SET CURRENT.REGION=%%?
SET CURRENT.REGION=%CURRENT.REGION:~-4%
skip=2 is working, not skip=3
 

Well, the risk with skip is still that different version of REG.EXE may produce different offsets.

Using :

SETLOCAL ENABLEEXTENSIONS 
FOR /F "tokens=3" %%? IN ('REG QUERY "HKU\.DEFAULT\Control Panel\International" /v Locale ^| FIND /I "Locale"') DO SET CURRENT.REGION=%%? 
SET CURRENT.REGION=%CURRENT.REGION:~-4%

would still be my preferred way.

(on my XP reg.exe both skip=2 and skip=3 do work).

To avoid the use of "FIND" or FINDSTR, whilst still being *safe*

You can do:

SETLOCAL ENABLEEXTENSIONS
FOR /F "tokens=1,3" %%A IN ('REG QUERY "HKU\.DEFAULT\Control Panel\International" /v Locale') DO IF "%%A"=="Locale" SET "CURRENT.REGION=%%B"
SET CURRENT.REGION=%CURRENT.REGION:~-4%

:cheers:

Wonko



#52 alacran

alacran

    Platinum Member

  • .script developer
  • 2710 posts
  •  
    Mexico

Posted 15 October 2013 - 03:19 PM

@alacran
Does this ("there wasn't any automatic change") mean that the batch didn't work?

 

@ misty

 

The batch worked fine as I said before that sentence.

 

Forget about the "automatic change", I misunderstood your comment about "forgot to mention that the batch will check the "HKU\.DEFAULT\Control Panel\International" registry key for the current Locale". Taking it as "the batch will take the actual registry key from the Windows installed on HDD (and use it)", after reading your batch  in notepad it is clear for me now you are talking about running PE registry that will be change only when you apply a new code.  Sorry for the inconvenience

 

Yes I also notice you have to close notepad and reopen it to see the keyboard change working.

 

Regards



#53 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 16 October 2013 - 12:14 AM

Updated project. Changelog -

 

* Added scripts for the following programs
 - Forensic Acquisition Utilities
 - FTK Imager
 - X-Ways Forensics
 - Disk Management Console (Diskmgmt.msc)
 - Keyboard layouts

 

* JkDefrag scripts fixed - x64 batch files were not
  working

 

* Fixed script that searches the root of all mounted
  drives for \Programs\MistyPE.menu.cmd - it was searching
  for the wrong file.

 

The Disk Management menu entry will launch a batch file which will apply the required registry settings. No files are added to %SystemRoot% - the registry entries enable diskmgmt.msc to run from X:\Programs\DiskMgmt or any other location (e.g. a USB drive). This is based upon IcemanND's work here (cheers Wonko).

 

Regards,

 

Misty

 

DOCUMENTS ARE IN THE PROJECT DOWNLOAD AND - http://mistype.reboo...ocs/readme.html



#54 alacran

alacran

    Platinum Member

  • .script developer
  • 2710 posts
  •  
    Mexico

Posted 16 October 2013 - 03:23 AM

@misty

 

In your latest version I found a bug during build (automatically aborted):

 

Any way I found the souce of the problem and fix it.  The DiskMgmt.script has a wrong line in the following section:

[IN.WIM]

Script Says:

FileCopy,"%Programs%\DiskMgmt\registry.entries.cmd","%OutputDir%\Programs\DiskMgmt"

Should say:

FileCopy,"%Programs%\DiskMgmt\registry.entries.cmd","%TargetDir%\Programs\DiskMgmt"

 

I make the fix and the next buid was successfull, now I'm going to boot the PE to test it and I'll report back

 

Regards


Edited by alacran, 16 October 2013 - 03:40 AM.

  • misty likes this

#55 alacran

alacran

    Platinum Member

  • .script developer
  • 2710 posts
  •  
    Mexico

Posted 16 October 2013 - 05:15 AM

@misty

 

Using 7 x86 SP1 Spanish source. Tested under Virtual Box this time in order to play with Diskmgmt.msc.

 

- Disk Management Console (Diskmgmt.msc): It works very fine, I was able to create and attach a VHD (1 GB fixed size), initialize and format it, later on after close and reopen Disk Management I detach an eliminate the VHD.

 

- Keyboard layouts: It works very well.

 

- There is a new version of PartitionGuru 4.4.01: I haven't download and install it because I don't know if it is compatible with your Script, I'm using v4.3.0 until now.

 

- WinFE: Not selected during build, so not tested.

 

Regards



#56 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 16 October 2013 - 06:15 AM

@alacran
Well spotted - thank you very much for the feedback. I'm in the process of uploading a new version with a very minor edit in the Disk management script.

:cheers:

For those that don't want to download the project for such a minor edit, please change line number 91 in the Disk Management script from -

FileCopy,"%Programs%\DiskMgmt\registry.entries.cmd","%OutputDir%\Programs\DiskMgmt"
to -
FileCopy,"%Programs%\DiskMgmt\registry.entries.cmd","%TargetDir%\Programs\DiskMgmt"
EDIT - Upload completed

#57 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 17 October 2013 - 11:12 AM

... There is a new version of PartitionGuru 4.4.01: I haven't download and install it because I don't know if it is compatible with your Script, I'm using v4.3.0 until now.....

@alacran
Sorry, I forgot to respond to this yesterday.

I see no reason why this version will not work with the existing project script as the script simply copies the files from a local directory. If the main executable has had a name change then the script will abort during the build process - it's rare for an executable name to be changed in a minor version update though.

If file or registry dependencies have been added then it might not run in WinPE - the only way to find out is to test it. I'll do so later tonight, but am confident that the new version of PartitionGuru will work.

Regards,

Misty

#58 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 20 October 2013 - 09:08 PM

Updated project. Changelog -


* Added support for 6.3.9600 (Windows 8.1 - Final). This
release appears to have fixed the problem reported in
the 2013.10.13 release of MistyPE - "dd and DriveImageXML
(and possibly other programs) not working with 6.3.9431
source files due to issues with wow32 and ntvdm.exe".

* Disk Management (Diskmgmt.msc) now applies a .reg file
instead of using an autoit executable.

* Edits to the Eraser scripts - it's now possible to change
the method used to erase files, folders, etc. The method is
set from a menu entry in the BBLean menu.

* Opera - 64-bit support added.

* Various tweaks in core script
- line 63 "FileDelete,"%Cache%\temp\*.*" has been
added to ensure that cached batch files and .ini files
are deleted earlier in the build process. Without this
fix there are errors in some very limited curcumstances.
- Added verification check from registry files extracted
from boot.wim - only used if the wimlib-imagex checks
fail.

* Script structure has been changed for all Program scripts.
Hopefully results in better error checking for any missing files.

* Browse for folder support is added by individual program
scripts even if this option is not selected in the Core script.
Resulting in a more modular approach (see following topic
"http://reboot.pro/to...ophy-for-winpe/"
for the philosophy behind this approach).

@alacran
I forgot to report back - the PartitionGuru script (in this release and the previous release of MistyPE) is also working with the latest version of PartitionGuru (v 4.4.0).

Regards,

Misty

#59 alacran

alacran

    Platinum Member

  • .script developer
  • 2710 posts
  •  
    Mexico

Posted 20 October 2013 - 09:30 PM

@ misty

 

Thans to you, I'll test MistyPE new version and report back.

 

There is something I forgot to tell you: If you run WinNTSetup2 or WinNTSetup3 when in Misty PE x86 or x64 builds the program runs but the left (1) and right (2) upper corners icons do not show on screen, I usually run this application from other 3.1 PE's and every thing looks fine.

 

(1) Shows a menu

 

(2) Runs BootIce

 

Link to the application:

 

http://www.msfn.org/...winntsetup-v23/

 

Regards


Edited by alacran, 20 October 2013 - 09:49 PM.


#60 RobinHood

RobinHood
  • Members
  • 2 posts
  •  
    United States

Posted 31 October 2013 - 10:02 PM

I am a computer tech running a small computer repair company, and I am trying to use MistyPE to create a small USB drive that I can send to my remote customers so that they can boot into a desktop and run a remote connection software I use called Ammyy Admin. This would allow me to remote into their desktop when it will not boot and allow me options to make repairs from here.

I admit I am a pretty good tech, but not so much a programmer!

 

Any suggestions would be greatly appreciated!

Thanks!

 



#61 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 01 November 2013 - 10:16 AM

@RobinHood
I've just completed a quick test and it looks like Ammyy Admin should be relatively easy to add to MistyPE - there's only one file dependency - dsound.dll.

I'll post the instructions later as it's not as straightforward as one program script - menu entries will need to be added to the shell script and commands to initialize the network and disable the firewall may also need to be added to winpeshl.ini - depending on your requirements.

I'm out for the day with the family so I'll get back to you later.

Regards,

Misty

#62 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 01 November 2013 - 09:28 PM

AmmyyAdmin.script -
[main]
Title=Ammyy Admin
Description=Remote Desktop solution
Selected=True
Level=3
Author=Misty
Version=1
Date=2013-11-01

[Interface]
pWebLabel1=http://www.ammyy.com/en/,1,10,51,100,216,18,http://www.ammyy.com/en/
pTextLabel1="Ammyy Admin Website",1,1,51,77,230,18,10,Bold

[process]
Run,%ScriptFile%,CHECKS
Run,%ScriptFile%,COMMON
If,%PROGRAMS.IN.WIM%,Equal,NO,Run,%ScriptFile%,NOT.IN.WIM
If,%PROGRAMS.IN.WIM%,Equal,YES,Run,%ScriptFile%,IN.WIM

[CHECKS]
If,%ARCH%,Equal,x64,Begin
  Message,"AmmyyAdmin is not compatiable with x64 builds of WinPE - exiting...",Error,5
  Exit,"AmmyyAdmin is not compatiable with x64 builds of WinPE - exiting..."
End
Set,%ERROR%,0
If,Not,ExistFile,"%Cache%\source\%ARCH%\dsound.dll",Set,%ERROR%,1
If,%ERROR%,Equal,1,Begin
  Message,A file dependancy for AmmyyAdmin is missing. Exiting program script - refer to the log,Error,5
  If,Not,ExistFile,"%Cache%\source\%ARCH%\dsound.dll",Echo,AmmyyAdmin - dsound.dll dependancy is missing,WARN
  Exit,A file dependancy for AmmyyAdmin is missing. See above.
End
If,Not,ExistFile,"%Programs%\AmmyyAdmin\AA_v3.3.exe",Begin
  If,Not,ExistDir,"%Programs%\AmmyyAdmin",DirMake,"%Programs%\AmmyyAdmin"
  System,ERROROFF,1
  WebGet,http://www.ammyy.com/AA_v3.3.exe,"%Programs%\AmmyyAdmin\AA_v3.3.exe"
  If,Not,ExistFile,"%Programs%\AmmyyAdmin\AA_v3.3.exe",Begin
    Message,"Could not find %Programs%\AmmyyAdmin\AA_v3.3.exe. Possible error with download - exiting script...",Error,5
    Exit,"Could not find %Programs%\AmmyyAdmin\AA_v3.3.exe. Possible error with download - exiting script...",WARN
  End
End

[COMMON]
If,%PROGRAMS.IN.WIM%,Equal,NO,Set,%PATH%,%OutputDir%
If,%PROGRAMS.IN.WIM%,Equal,YES,Set,%PATH%,%TargetDir%
If,Not,ExistDir,"%PATH%\Programs",DirMake,"%PATH%\Programs"
DirMake,"%PATH%\Programs\AmmyyAdmin"
FileCopy,"%Programs%\AmmyyAdmin\AA_v3.3.exe","%PATH%\Programs\AmmyyAdmin"
Echo,"Copying dependencies..."
FileCopy,"%Cache%\source\%ARCH%\dsound.dll","%PATH%\Programs\AmmyyAdmin"

[IN.WIM]
Wait,1

[NOT.IN.WIM]
Wait,1
Exit,"AmmyyAdmin copied to #$q%PATH%\Programs#$q directory - it will not be added to #$qboot.wim#$q",Nowarn

[AuthorEncoded]
AA_v3_128.ico=8676,11568
logo=AA_v3_128.ico

[EncodedFile-AuthorEncoded-AA_v3_128.ico]
lines=2
0=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
1=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
2=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

Add the following to the [CREATE.CACHE] section of the Core/Core Files script (around line 333) -
//ammyy admin dependencies
ShellExecute,Hide,"%Tools%\wimlib\wimlib-imagex.exe","extract #$q%Install.wim%#$q 1 /windows/system32/dsound.dll --dest-dir=#$q%Cache%\source\%ARCH%#$q"

Add the following to the [create.cache] section of the Tools/Create a Cache from WinRE script (around line 150) -
//ammyy admin dependancies
If,ExistFile,"%WindowsSystemDir%\dsound.dll",FileCopy,"%WindowsSystemDir%\dsound.dll","%Cache%\source\%ARCH%"

Replace the [WINPESHL] section of the Shell.Then.End/BlackBox Lean script (at line 336) with -
[WINPESHL]
If,ExistFile,"%TargetDir%\Windows\System32\winpeshl.ini",FileDelete,"%TargetDir%\Windows\System32\winpeshl.ini"
FileCreateBlank,"%TargetDir%\Windows\System32\winpeshl.ini"
If,ExistFile,"%TargetDir%\Programs\WinFE\WProtect.exe",Begin
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",[LaunchApps],Append
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",%SYSTEMDRIVE%\Programs\WinFE\wprotect.exe#$c -i,Append
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",%SYSTEMROOT%\System32\wpeutil.exe#$c InitializeNetwork,Append
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",%SYSTEMROOT%\System32\wpeutil.exe#$c DisableFirewall,Append
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",%SYSTEMDRIVE%\Programs\bbLean\blackbox.exe,Append
End
If,Not,ExistFile,"%TargetDir%\Programs\WinFE\WProtect.exe",Begin
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",[LaunchApps],Append
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",%SYSTEMROOT%\System32\wpeutil.exe#$c InitializeNetwork,Append
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",%SYSTEMROOT%\System32\wpeutil.exe#$c DisableFirewall,Append
  TXTaddLine,"%TargetDir%\Windows\System32\winpeshl.ini",%SYSTEMDRIVE%\Programs\bbLean\blackbox.exe,Append
End

Add the following to the [PROGRAMS.IN.WIM_MENU] section of the Shell.Then.End/BlackBox Lean script (at line 248) -
TXTaddLine,"%OutputDir%\Programs\MistyPE.menu.cmd",IF EXIST #$q%~dp0AmmyyAdmin\AA_v3.3.exe#$q ECHO [exec] (Ammyy Admin) {#$q%~dp0AmmyyAdmin\AA_v3.3.exe#$q} >> #$q%SYSTEMDRIVE%\Programs\bblean\menu.rc#$q,Append


Add the following to the [BBLEAN_MENU] section of the Shell.Then.End/BlackBox Lean script (at line 127) -
If,ExistFile,"%TargetDir%\Programs\AmmyyAdmin\AA_v3.3.exe",TXTaddLine,"%TargetDir%\Programs\bblean\menu.rc",[exec] (Ammyy Admin) {%SYSTEMDRIVE%\Programs\AmmyyAdmin\AA_v3.3.exe},Append
Regards,

Misty

#63 RobinHood

RobinHood
  • Members
  • 2 posts
  •  
    United States

Posted 02 November 2013 - 07:15 PM

Thanks so much Misty!

 

I'll try as you suggest and let you know how it goes.

 

Thanks again for the quick reply.

 

Robin



#64 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 03 November 2013 - 12:10 AM

Updated project. Changelog -

* Edited Tools\Create a Cache from WinRE script - added
build 6.3.9600 (Windows 8.1 - Final) to the list of
tested/working sources.

* Added the following program scripts -
- WinHex
- AmmyyAdmin
- aida64
- TrueCrypt

* Included FAU in the download. This is redistributed
with the permission of the author (GMG Systems Inc) -
refer to the project documentation.

* Program scripts now contain menu entries - this should
make it easier to add new program scripts.

Hopefully nothing has been broken during the update.

Regards,

Misty

#65 Darkman74

Darkman74
  • Members
  • 8 posts

Posted 06 March 2014 - 02:42 PM

Hello Pros ;-)

 

hope the Project is still alive!

 

id like to add some files, and cmd scripts to the project (logonscripts to map network shares).

 

 

Thanks in advance



#66 KP13

KP13

    Newbie

  • Members
  • 18 posts
  •  
    United States

Posted 06 March 2014 - 06:56 PM

Every time I try to boot the PE after building it I get the following message on the cmd prompt:

 

"A winpeshl.ini file is present, but no commands were successfully launched. This could be caused by incorrect formatting or an invalid executable name. Please consult the documentation for more information."

 

I'm using a Win7 x86 Professional disk as the base.



#67 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 06 March 2014 - 07:31 PM

Every time I try to boot the PE after building it I get the following message on the cmd prompt:

 

"A winpeshl.ini file is present, but no commands were successfully launched. This could be caused by incorrect formatting or an invalid executable name. Please consult the documentation for more information."

 

I'm using a Win7 x86 Professional disk as the base.

 

This error is documented here - http://reboot.pro/to...winfe/?p=178826 .

 

Try using 7-zip to unpack the archive and re-running the build process

 

Regards,

 

Misty



#68 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 06 March 2014 - 07:34 PM

Hello Pros ;-)

 

hope the Project is still alive!

 

id like to add some files, and cmd scripts to the project (logonscripts to map network shares).

 

 

Thanks in advance

Hi Darkman74,

 

Yes, the project is still alive - I haven't updated it for a while as it appears to be working and meets my needs. In terms of adding files and cmd scripts, what are you actually trying to do? I can hopefully talk you through how to create your own script for customising the build - depending on your requirements.

 

Regards,

 

Misty



#69 Darkman74

Darkman74
  • Members
  • 8 posts

Posted 06 March 2014 - 08:13 PM

First of all thank you for the quick answer and sorry for my bad English.

 

Implement one or more  Folder with scripts or executable Files may be enough.

call an exe file from the main Menu (bblean shell) would be nice but is not necesary 

 

best Regards

 

Darkman


Edited by Darkman74, 06 March 2014 - 08:14 PM.


#70 KP13

KP13

    Newbie

  • Members
  • 18 posts
  •  
    United States

Posted 06 March 2014 - 09:49 PM

This error is documented here - http://reboot.pro/to...winfe/?p=178826 .

 

Try using 7-zip to unpack the archive and re-running the build process

 

Regards,

 

Misty

 

I unzipped it with 7-Zip and it worked perfectly. I'm still having issues after creating a build and booting. It does not find/ run .exe files such as FTK Imager and WinHex



#71 misty

misty

    Gold Member

  • Developer
  • 1066 posts
  •  
    United Kingdom

Posted 07 March 2014 - 11:36 AM

@KP13,
I'm not sure, based on your post, whether the exe files are missing during the build phase or whilst MistyPE is booted/running?
 
If this is a build issue - you are aware that the two programs you mentioned (FTK Imager and WinHex) are not included with the MistyPE download and have to be installed on the system you are running winbuilder on? Assuming the programs are installed (or at least present) on the system, the file paths will also need to be selected in the relevant program script(s).
 
If this is an issue whilst MistyPE is running - I'll assume that you selected NO in the 8] Programs in boot.wim menu option during the build process. Please try rebuilding the project and selecting YES for this particular option - this will include the programs within the boot.wim file - whilst it will result in a larger file (and you will use more system RAM) it should rule out missing executable files when running WinFE/WinPE.
 
Hope this helps.
 
Regards,
 
Misty

P.s. See (bullet point 6) here for a list of the programs not included in the download. If you want to use any of them then you will need to download and/or install the required program and set the file paths manually.

#72 KP13

KP13

    Newbie

  • Members
  • 18 posts
  •  
    United States

Posted 07 March 2014 - 01:55 PM

@KP13,
I'm not sure, based on your post, whether the exe files are missing during the build phase or whilst MistyPE is booted/running?
 
If this is a build issue - you are aware that the two programs you mentioned (FTK Imager and WinHex) are not included with the MistyPE download and have to be installed on the system you are running winbuilder on? Assuming the programs are installed (or at least present) on the system, the file paths will also need to be selected in the relevant program script(s).
 
If this is an issue whilst MistyPE is running - I'll assume that you selected NO in the 8] Programs in boot.wim menu option during the build process. Please try rebuilding the project and selecting YES for this particular option - this will include the programs within the boot.wim file - whilst it will result in a larger file (and you will use more system RAM) it should rule out missing executable files when running WinFE/WinPE.
 
Hope this helps.
 
Regards,
 
Misty

P.s. See (bullet point 6) here for a list of the programs not included in the download. If you want to use any of them then you will need to download and/or install the required program and set the file paths manually.

 

Sorry I'm all new to creating PE's. I did include the paths to the .exes but I don't think I flipped the option for #8. Thanks as always for the help.

 

-KP



#73 KP13

KP13

    Newbie

  • Members
  • 18 posts
  •  
    United States

Posted 10 March 2014 - 02:08 PM

The option for #8 was flipped to Yes but it still does not recognize the .exe files for FTK Imager and WinHex. The X: drive is mounted and I can run other programs like SumatraPDF and 7-Zip. Here is the error:

 

296dv08.png



#74 KP13

KP13

    Newbie

  • Members
  • 18 posts
  •  
    United States

Posted 10 March 2014 - 03:21 PM

The issue has been fixed. I believe it was write issue when it was searching for those directories during the build. They open up properly now.

 

-KP



#75 farda

farda

    Newbie

  • Members
  • 23 posts
  •  
    Iraq

Posted 10 April 2014 - 12:44 PM

hi misty
i new to such as thing can you please make script for below program? all is free and best in kinds
and also i have licensed of AOMEI Partition Assistant Pro Edition
i want add that to MistyPE is this posiblle? i already created iso from that and booted with usb
but i want it to MistyPE.

also regarding to this post i can install windows 8.1 with iso  in MistyPE
but i dont undrastand how work and how add winntsetup
can you also explain this? i know how to create MistyPE.iso
i know how to copy Windows ISO but i dont know where i must put winntsetup and how to install windows from that


Ant Renamer
Explorer++ run as portable
FastCopy
Notepad2  mod
Everything Search Engine
NFReader
WizTree
SearchForDuplicates
Portable AnyBurn 2.0
Quick Encryption
 







Also tagged with one or more of these keywords: winpe10, winpe5, winpe4, winpe3, winpe2, winpe

2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users