Jump to content

zeeter

Member
  • Posts

    10
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by zeeter

  1. Tried updating from 3.6.2 to 3.6.3 - pretty much crashes, everything turns black and no gui available.  Have to run task manager to open explorer/control panel to roll back to a previous 3.6.1 install to get stuff working again.  I couldn't find a download mirror for 3.6.2.

     

    Running on Win11 Enterprise build 25309.

  2. I'm admin to a bunch of public pc's at work and right now most of them run XP and automatically logon to the domain using a domain account...I've set the correct winlogon settings in the registry for XP. Now on XP before the computer logs in you can hold down the "shift" key and it will bypass the auto logon and let you login as a different user (either local or domain).

    Now I've setup the same thing on Windows 7, but the "shift" key does not work to bypass this and I have not been able to figure out a way around this. Our public machines are locked down with a special auto logon user. If I need to fix the computer it is very convenient to log off, hold down "shift", and then logon as local admin.

    Can someone please help me with this? And if you don't understand what I'm asking I can try to explain it better.

    Thanks

  3. assuming the first id is the correct id..

    i made the following script to install Firefox addons

    requirements:

    (put all of them in the same folder)

    1. UnZip.exe (Command line extractor) from http://www.info-zip.org

    or use any other you extractor you prefer and adjust the parameters for extraction below

    2. youraddon.xpi (any Firefox compatible xpi)

    3. This cmd script call it install.cmd for example

    @echo off
    Title Firefox Addon installer by TGUP.net
    echo.
    Echo Installing youraddon..
    IF EXIST "%temp%\youraddon\" rd /s /q "%temp%\youraddon"
    MD "%temp%\youraddon\addon"
    Start /B /Wait "Extracting" "UnZip.exe" -q -o "youraddon.xpi" -d "%temp%\youraddon\addon"
    FOR /F "tokens=2,3 delims=^<^>=" %%i in ('FIND "em:id" "%temp%\youraddon\addon\install.rdf"') DO (IF "%%~j"=="" (SET xpi_id=%%~i&GOTO :vaivai) ELSE (SET xpi_id=%%~j&GOTO :vaivai))
    :vaivai
    IF NOT DEFINED xpi_id (
    ECHO.
    ECHO.
    Echo Error occured while extracting..
    ping.exe 127.0.0.1 -n 4 >NUL
    EXIT
    )
    rem kill firefox or get write error
    tskill firefox

    FOR /F %%a in ('dir /ad /b "%appdata%\Mozilla\Firefox\Profiles\*.default"') DO (
    IF EXIST "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%\" rd /s /q "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%"
    IF NOT EXIST "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%\" MD "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%"
    FOR /F "tokens=*" %%i in ('dir /b /og "%temp%\youraddon\%xpi_id%\"') DO MOVE /Y "%temp%\youraddon\%xpi_id%\%%i" "%appdata%\Mozilla\Firefox\Profiles\%%a\extensions\%xpi_id%\"
    )

    echo.
    echo Installation Done!
    ping.exe 127.0.0.1 -n 4 >NUL
    IF EXIST "%temp%\youraddon\" rd /s /q "%temp%\youraddon"
    exit

    :unsure:

    Just tried this and it's not working for me. The prompt flashes and then quickly closes. I closed firefox before running this. I name the files what you have here and put them all in the same directory. Using this on firefox 3.6.3

    Any ideas?

×
×
  • Create New...