Run PoE as a limited user menu

User Tag List

Page 16 of 29 FirstFirst ... 121314151617181920 ... LastLast
Results 226 to 240 of 421
  1. #226
    nigshomie1's Avatar Member
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Everything worked fine for me until this league. when i try to launch as a limited user the poe launched pops up for a second then dissapears and nothing launches. has anyone else had this problem or knows how to fix it?

    Run PoE as a limited user
  2. #227
    omnicrunch's Avatar Member
    Reputation
    3
    Join Date
    Nov 2013
    Posts
    43
    Thanks G/R
    8/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thebbandit View Post
    I wrote a batch script that will launch Path of exile, alongside some other scripts I have running alongside POE. I know this in itself is not very special, but this batchfile actually checks first if the game or scripts are open and it will not re-launch a new instance of the files.

    Store the batch file somewhere it can stay (filename.bat), then make a shortcut to the batch file on your desktop. Select properties and then launch minimized. Now when you run the batch file it will check if the game is open, and check if all your scripts are open.

    There are REMarks in the batch file to help make modifications. It is set up to launch WingmanReloaded, TradeMacro and Trades Companion but this should work for any type of script or program. Just launching the game does not require AHK, everything in the Scripts Section will require that AHK is installed.

    Code:
    SETLOCAL
    ECHO OFF
    SET run_as=C:\Windows\System32\runas.exe
    
    REM Name of the local user account you are having launch the EXE
    SET local_user=ReplaceWithUserName
    
    REM Possible EXE names: PathOfExile.exe, PathOfExile_x64.exe, PathOfExileSteam.exe, PathOfExile_x64Steam.exe, PathOfExile_KG.exe, PathOfExile_x64_KG.exe
    SET exe_name=PathOfExile_x64.exe
    
    REM You can launch the game with additional Parameters
    SET exe_params=--nologo --waitforpreload
    
    REM Keep in mind because of strange reasons this one must have / instead of \
    SET exe_path=C:/Program Files (x86)/Grinding Gear Games/Path of Exile/
    
    REM Make sure to change this drive letter if not on C: drive
    CD C:
    TASKLIST /fi "IMAGENAME eq %exe_name%" 2>NUL | FIND /I /N "%exe_name%">NUL
    IF NOT "%ERRORLEVEL%"=="0" START %run_as% /user:%local_user% /savecred "cmd /C cd \"%exe_path%\" && Start /high %exe_name% %exe_params%"
    
    
    
    REM ---------------
    REM Scripts Section
    REM ---------------
    
    REM Place all scripts in subfolders one directory
    SET scripts_path=C:\Path\To\The\Path of Exile\Scripts
    
    
    REM Name of the script to run
    SET script_1_name=PoE-Wingman.ahk
    REM Which subdirectory of the scripts folder
    SET script_1_subpath=WingmanReloaded
    REM What to look for as an active process in AHK
    SET script_1_searchString=PoE-Wingman.ahk ahk_exe AutoHotkey.exe
    REM Build the Path from supplied values
    SET script_1_path=%scripts_path%\%script_1_subpath%\%script_1_name%
    
    
    REM Script 2
    SET script_2_name=Run_TradeMacro.ahk
    SET script_2_subpath=POE-TradeMacro
    SET script_2_searchString=_TradeMacroMain.ahk ahk_exe AutoHotkey.exe
    REM Build the Path
    SET script_2_path=%scripts_path%\%script_2_subpath%\%script_2_name%
    
    
    REM Script 3
    SET script_3_name=POE Trades Companion.ahk
    SET script_3_subpath=POE-Trades Companion
    SET script_3_searchString=%script_3_name% ahk_exe AutoHotkey.exe
    REM Build the Path
    SET script_3_path=%scripts_path%\%script_3_subpath%\%script_3_name%
    
    
    REM Send script to AutoHotkey to evaluate for hidden window titles
    (
    ECHO #NoTrayIcon 
    ECHO SetTitleMatchMode, 2
    ECHO DetectHiddenWindows On
    ECHO If !WinExist^("%script_1_searchString%"^^^)
    ECHO Run %script_1_path%
    ECHO If !WinExist^("%script_2_searchString%"^^^)
    ECHO Run %script_2_path%
    ECHO If !WinExist^("%script_3_searchString%"^^^)
    ECHO Run %script_3_path%
    ECHO ExitApp
    
    )| AutoHotkey.exe *
    

    Thanks for this!

    The first part is working great, but the script part is acting weird I think?
    I guess its supposed to check if the tools/scripts are running and if not then start, right?

    For me its only opening the tools/scripts folder without running them.

    Code:
    SET scripts_path="C:\Users\USER\Documents\Gaming Tools\Path of Exile"
    On this folder I have all the PoE Tools and Scripts within subfolder, so Wingman is under:

    Code:
    "C:\Users\USER\Documents\Gaming Tools\Path of Exile\WingmanReloaded"
    After executing the batch file the windows explorer opens to the folder and marks the WingmanReloaded folder, but its not executing it.

    Whole script section:

    Code:
    REM ---------------
    REM Scripts Section
    REM ---------------
    
    REM Place all scripts in subfolders one directory
    SET scripts_path="C:\Users\USER\Documents\Gaming Tools\Path of Exile"
    
    REM Name of the script to run
    SET script_1_name=PoE-Wingman.ahk
    REM Which subdirectory of the scripts folder
    SET script_1_subpath=WingmanReloaded
    REM What to look for as an active process in AHK
    SET script_1_searchString=PoE-Wingman.ahk ahk_exe AutoHotkey.exe
    REM Build the Path from supplied values
    SET script_1_path=%scripts_path%\%script_1_subpath%\%script_1_name%
    
    
    REM Script 2
    SET script_2_name=TraderForPoe.exe
    SET script_2_subpath=POE-TradeMacro
    SET script_2_searchString=_TradeMacroMain.ahk ahk_exe AutoHotkey.exe
    REM Build the Path
    SET script_2_path=%scripts_path%\%script_2_name%
    
    
    REM Send script to AutoHotkey to evaluate for hidden window titles
    (
    ECHO #NoTrayIcon 
    ECHO SetTitleMatchMode, 2
    ECHO DetectHiddenWindows On
    ECHO If !WinExist^("%script_1_searchString%"^^^)
    ECHO Run %script_1_path%
    ECHO If !WinExist^("%script_2_searchString%"^^^)
    ECHO Run %script_2_path%
    ECHO ExitApp
    
    )| AutoHotkey.exe *
    PS: TraderForPoe.exe works fine, its just wingman wont open up.

  3. #228
    Baki667's Avatar Member
    Reputation
    2
    Join Date
    Nov 2014
    Posts
    43
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for this thread!

    The Shortcut worked flawlessly unstill I installed PoE in another drive (d). If I try the Shortcut without this part: "cmd /C cd " the shortcut tries to open PoE but results in a content.ggpk error. If I add "cmd /C cd " I can only see 2 CMD windows appear too briefly too read and nothing happens.

    How do I fix this? probably has something to do with the PoE being in another drive than c?

  4. #229
    boterang's Avatar Active Member
    Reputation
    48
    Join Date
    Jul 2012
    Posts
    44
    Thanks G/R
    42/41
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, I've always had poe installed on the main hard drive, so I can't tell you exactly.

    You can try to see if there is any option in this post (Run PoE as a limited user) that can come in handy.

  5. #230
    armory236's Avatar Active Member
    Reputation
    57
    Join Date
    Apr 2013
    Posts
    300
    Thanks G/R
    340/53
    Trade Feedback
    1 (100%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Baki667 View Post
    Thanks for this thread!

    The Shortcut worked flawlessly unstill I installed PoE in another drive (d). If I try the Shortcut without this part: "cmd /C cd " the shortcut tries to open PoE but results in a content.ggpk error. If I add "cmd /C cd " I can only see 2 CMD windows appear too briefly too read and nothing happens.

    How do I fix this? probably has something to do with the PoE being in another drive than c?
    this is how I run POE-limited from E drive (which is 40Gb SSD), Win OS is installed on C
    you can directly copy that and change "fake" to your user and directory in the "E:..."
    C:\Windows\System32\runas.exe /user:fake /savecred "cmd /C cd /D "E:/PoE/" && PathOfExile.exe"
    Last edited by armory236; 03-24-2020 at 03:01 AM.

  6. #231
    Baki667's Avatar Member
    Reputation
    2
    Join Date
    Nov 2014
    Posts
    43
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for your answer, armory.

    Tried this: C:\Windows\System32\runas.exe /user:BakiPOE /savecred "cmd /C cd /D "d:/Spiele/Path of Exile/" && PathOfExile.exe"

    Username and path are 100% correct. It still does not work.

  7. #232
    armory236's Avatar Active Member
    Reputation
    57
    Join Date
    Apr 2013
    Posts
    300
    Thanks G/R
    340/53
    Trade Feedback
    1 (100%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Baki667 View Post
    Thank you for your answer, armory.

    Tried this: C:\Windows\System32\runas.exe /user:BakiPOE /savecred "cmd /C cd /D "d:/Spiele/Path of Exile/" && PathOfExile.exe"

    Username and path are 100% correct. It still does not work.
    there are a couple of slash symbols which are masked, I can't put them into message, they disappear
    /upd: made it finally, here you go
    Code:
    C:\Windows\System32\runas.exe /user:fake /savecred "cmd /C cd /D \"E:/PoE/\" && PathOfExile.exe"

  8. #233
    Baki667's Avatar Member
    Reputation
    2
    Join Date
    Nov 2014
    Posts
    43
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks again, but it still does not work.

    Just to be sure that it can work I tried this one (qbittorrent which is on c) and it worked:

    Code:
    C:\Windows\System32\runas.exe /user:BakiPOE /savecred "cmd /C cd \"C:/Program Files/qBittorrent/\" && qBittorrent.exe"
    Edit: "solved" it by installing POE to drive c again. No clue what witchcraft is required to make that shortcut work on other drives
    Last edited by Baki667; 03-24-2020 at 10:23 AM.

  9. #234
    PWFTrojaner's Avatar Member
    Reputation
    2
    Join Date
    Dec 2016
    Posts
    20
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For me it Works on Drive :d

    C:\Windows\System32\runas.exe /user:YourUser /savecred "cmd /C cd /d "D:/Grinding Gear Games/Path of Exile/" && start /high PathOfExile_x64.exe"

    iam also to try atm to Fix this for the User on my VMware but didnt get it to work...
    my suggestion was:

    C:\Windows\System32\runas.exe /user:MyUser /savecred "cmd /C cd /d "\\vmware-host\Shared Folders\Grinding Gear Games\Path of Exile\PathOfExile_x64.exe" -gc2 -ns

    any ideas on this?

  10. #235
    thebbandit's Avatar Contributor
    Reputation
    227
    Join Date
    Feb 2010
    Posts
    427
    Thanks G/R
    23/203
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PWFTrojaner View Post
    For me it Works on Drive :d

    C:\Windows\System32\runas.exe /user:YourUser /savecred "cmd /C cd /d "D:/Grinding Gear Games/Path of Exile/" && start /high PathOfExile_x64.exe"

    iam also to try atm to Fix this for the User on my VMware but didnt get it to work...
    my suggestion was:

    C:\Windows\System32\runas.exe /user:MyUser /savecred "cmd /C cd /d "\\vmware-host\Shared Folders\Grinding Gear Games\Path of Exile\PathOfExile_x64.exe" -gc2 -ns

    any ideas on this?
    Split the command and just run the second portion manually and get it working. Then combine it into the run as. I am sure you will find the break in function that way
    WingmanReloaded: https://bandittech.github.io/WingmanReloaded

    Browse past issues, submit help request, new bug report or add a feature request: https://github.com/BanditTech/WingmanReloaded/issues

  11. #236
    PWFTrojaner's Avatar Member
    Reputation
    2
    Join Date
    Dec 2016
    Posts
    20
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I sadly dont know how to do it.
    I just read though the 16 pages to get it work on my Main system.
    but seems impossible to find out why it dosnt start on my VM

  12. #237
    vazahl's Avatar Member
    Reputation
    1
    Join Date
    Mar 2020
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C:\Windows\System32\runas.exe /user:Exile /savecred "cmd /C cd /d "A:\PathofExile" && PathOfExile_x64.exe"

    anyone help me please my command is not opening path of exile after inputting my password

  13. #238
    hkfully's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My POE stopped after login with 3.10.1d patch when running as limited user, anyone else experienced the same?

  14. #239
    dlr5668's Avatar Contributor
    Reputation
    279
    Join Date
    May 2012
    Posts
    542
    Thanks G/R
    129/226
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    All good here
    github.com/vadash/EZVendor

  15. #240
    Genocyber's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    108
    Thanks G/R
    111/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone managed to execute Poe Overlay while using this trick?

Page 16 of 29 FirstFirst ... 121314151617181920 ... LastLast

Similar Threads

  1. How to run programs as vista user
    By zeulus in forum Community Chat
    Replies: 12
    Last Post: 12-23-2009, 08:24 AM
  2. [Turbo-Zombie] Run fast as Zombie
    By 41p32 in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 10-23-2008, 06:26 PM
  3. [Performance Guide] How to run WoW to the limits without OC'ing
    By Magichick in forum World of Warcraft Guides
    Replies: 18
    Last Post: 03-03-2008, 06:55 AM
  4. Run 100% as much you want
    By heke01 in forum World of Warcraft Model Editing
    Replies: 4
    Last Post: 08-09-2007, 07:01 PM
  5. Get as many limited supply Items as you want
    By Romeboat in forum World of Warcraft Exploits
    Replies: 10
    Last Post: 11-26-2006, 06:05 PM
All times are GMT -5. The time now is 02:25 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search