Jump to content

Strat79

Member
  • Posts

    104
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by Strat79

  1. for you first question about always on top it is this.

    WinSetOnTop ( "title", "text", flag )

    Parameters

    title The title of the window to affect.

    text The text of the window to affect.

    flag Determines whether the window should have the "TOPMOST" flag set.

    1=set on top flag, 0 = remove on top flag

  2. For the winmove, are you wanting to center a window in the current desktop? I always just guess about what center would be. If you really need absolute center look in the help file under window functions and look into WinGetPos and WinGetClientSize. it may give you some insight.

  3. as for deleting directories and sub directories, you don't have to delete all file first if you dont want, just have to add a flag at the end. Bascially if you add the 1 at the end it will work like deltree.

    DirRemove ( "path" [,recurse] )

    Parameters

    path Path of the directory to remove.

    recurse [optional] Use this flag to specify if you want to delete sub-directories too.

    0 = (default) do not remove files and sub-directories

    1 = remove files and subdirectories (like the DOS DelTree command)

    Example

    ; Delete C:\Test1 and all subdirs and files

    DirRemove("C:\Test1", 1)

  4. Older version must have used install shield installers, those are the ones that use .iss files. The new ones are Inno installers, can't use .iss files on them. Anyway, only thing I know is some will let you use the /COMPONENTS= switch if you know what the comonent names are. But I really don't know how to get the list of components. Someone else may know.

  5. For the silver theme just search for "+silver +theme" and search for any date instead of 30 days old. There should be several posts about it. As for the autopartition=1, i am pretty sure the only thing it does is look for the partition with the most free space and installs to it. I think that is the only thing it looks for to determine which one it will use, so if your C: is the biggest, then you should have no problem. So setting the autopartition=1 and the filesystem=leavealone then you should get no prompts. I don't.

  6. Just hit me, I think the AutoPartiton = 1 part is what chooses the most suitable partiton. But that is still really not want you are wanting. Not even sure you can tell it to install to strictly C:\ If your C:\ is the biggest partiton, at least the one with the most free space it will use it and that will fix your problem. If not, or this CD is for more than your computer than I really don't know. Sorry.

  7. How about pasting a copy of your winnt.sif file in here for us to look at. Well, at least the data and unattended sections. Here is mine for reference.

    [Data]

    AutoPartition = 1

    MsDosInitiated = 0

    UnattendedInstall = Yes

    [unattended]

    UnattendMode = FullUnattended

    OemSkipEula = Yes

    OemPreinstall = Yes

    OEMSkipWelcome = 1

    TargetPath = \WINDOWS

    UnattendSwitch = Yes

    CrashDumpSetting = 0

    DUDisable = Yes

    DriverSigningPolicy = Ignore

    FileSystem = LeaveAlone

    Hibernation = No

    Repartition = No

    WaitForReboot = No

  8. If the file system is already FAT32 then adding this "FileSystem = LeaveAlone" to the winnt.sif under the [unattended] section will default to FAT32. Nof for sure about the c: part though..it has been a while. Maybe adding "TargetPath = \WINDOWS" under the same heading will do the trick. I think that picks the biggest partiton though. Not for sure, have to get somebody esle to answer that.

×
×
  • Create New...