Jump to content

laura

Member
  • Posts

    86
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Lithuania

Posts posted by laura

  1. Hello

    Maybe i asked for this some time ago, but i could not find where and when :) So i need command line tool for converting text file from ansi to unicode. For example, i made textfile from cmd with echo command and it encoded at ansi, i need to reencode this file to utf-8 in command line ;)

    Thanks in advance

  2. I need the following

    Input Language:

    English (Canada) U.S. Keyboard layout (default)

    French (Canada) Canadian French Keyboard

    here is my winnt.sif

    [RegionalSettings]

    SystemLocale = "0409"

    UserLocale = "0409"

    UserLocale_DefaultUser = "0409"

    InputLocale = "0409:00000409", "1009:00011009"

    InputLocale_DefaultUser = "0409:00000409"

    I don't see my error. why am i getting canandian english?

    because 1009 is canadian english

    if you want French Canadian use 0c0c instead of 1009

    why do you not want to read Windows XP/Server 2003 - List of Locale IDs, Input Locale, and Language Collection ? :)

  3. Hello all

    I want to remove almost every language, but i need to let Baltic, Cyrillic and Western Europe and US.

    In winnt.sif [RegionalSettings] label i have settings:

    [RegionalSettings]
    LanguageGroup = 3,5,1
    Language = 00000427
    InputLocale_DefaultUser = 0409:00000409
    SystemLocale = 00000427
    UserLocale = 00000427
    UserLocale_DefaultUser = 00000427

    where Language 0x0427 is Lithuanian (Lithuania), LanguageGroup 1 is Western Europe and United States, 3 is Baltic and 5 is Cyrillic

    But after installing windows on Regional and Language Options i have English (US) on every tab (had to be Lithuania). Where is the error ?

  4. Hello all

    I would like to run script to log session uptime before windows is shutdowning or restarting. The script is something like this:

    @echo. >> %systemdrive%\logs\uptime.log
    @echo %date:~2,8% %time:~0,8% >> %systemdrive%\logs\uptime.log
    @systeminfo | find "Up Time" >> %systemdrive%\logs\uptime.log

    Or maybe anybody knows the program which could do this task...

  5. >>%UPM_CMD% ECHO ::Bye cruel world
    >>%UPM_CMD% ECHO DEL /Q /F %%0
    >>%UPM_CMD% ECHO EXIT
    : --------------------- Tweaks end. --------------------

    EXIT

    1. too many exits (anyway they are not executed) :whistle:

    2. imho DEL /Q /F %%0 need to change to DEL /Q /F %0 (maybe my command prompt is different but with 2 '%' the script is staying on the disk, but if delete one '%', the script is really leaving the cruel world)

  6. @echo off
    set key=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\
    reg add %key% /v PagingFiles /t REG_MULTI_SZ /d "%SystemDrive%\pagefile.sys 1024 1024" /f

    save as some.cmd and there you may choose any sizes.

    run regedit and export any values to file :)

×
×
  • Create New...