Run PoE as a limited user menu

User Tag List

Page 19 of 28 FirstFirst ... 151617181920212223 ... LastLast
Results 271 to 285 of 419
  1. #271
    chigo's Avatar Member
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tyvm miss that D: ^_^

    Run PoE as a limited user
  2. #272
    DanielWenner's Avatar Member
    Reputation
    1
    Join Date
    May 2021
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Message can be deleted
    Last edited by DanielWenner; 05-13-2021 at 09:12 PM.

  3. #273
    skyeom's Avatar Member
    Reputation
    1
    Join Date
    May 2021
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think I've finished the setting as a limited user (username: BOT). Thanks.

    Now I can load poehud without any problem.

    However I can't load my original poe setting (sounds, resolutions, etc.) and item filters.

    According to the guideline, I understood that new path for the limited user should be in "C:/BOT/Documents/My Games/"

    And I copied and pasted every filter as well as production_Config.ini into this folder. But it doesn't work.

    Is there anyone who had a same trouble and fix it? Or am I mssing something?

  4. #274
    darvel's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How to make Awakened PoE Trade work when poe is launched from a limited user?

  5. #275
    NoobToken's Avatar Member CoreCoins Purchaser
    Reputation
    8
    Join Date
    Nov 2010
    Posts
    52
    Thanks G/R
    11/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by skyeom View Post
    I think I've finished the setting as a limited user (username: BOT). Thanks.

    Now I can load poehud without any problem.

    However I can't load my original poe setting (sounds, resolutions, etc.) and item filters.

    According to the guideline, I understood that new path for the limited user should be in "C:/BOT/Documents/My Games/"

    And I copied and pasted every filter as well as production_Config.ini into this folder. But it doesn't work.

    Is there anyone who had a same trouble and fix it? Or am I mssing something?
    Its supposed to be "C:\Users\BOT\Documents\My Games\Path of Exile"

  6. #276
    timmybowers's Avatar Member
    Reputation
    1
    Join Date
    Jun 2021
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by IChangedMyUsername View Post
    Also having this issue.

    The shortcut command I'm using is
    Code:
    C:\Windows\System32\runas.exe /user:MyUser /savecred "cmd /C cd /d \"C:/Program Files (x86)/Grinding Gear Games/Path of Exile/\" && start /high PathOfExile_x64.exe"
    One potential solution I read said I may need to have poe installed on both users? Is that true? If anyone knows why this is happening It'd be greatly appreciated.
    You cannot run from Program Files from another user.

  7. #277
    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)
    In my batch script, I have updated a few things so I guess maybe it might help some of you struggling to get this working.

    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=limited
    
    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 --waitforpreload
    SET exe_params=--nologo
    
    REM Keep in mind because of strange reasons this one must have / instead of \
    SET exe_path=D:/Program Files (x86)/Grinding Gear Games/Path of Exile
    
    REM Make sure to change this drive letter if not on C: drive
    CD D:
    
    REM Now we run the code you provided
    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 /D \"%exe_path%\" && Start /high %exe_name% %exe_params%"
    So lets break down some parts of what its doing:

    Code:
    SETLOCAL
    ECHO OFF
    SET run_as=C:\Windows\System32\runas.exe
    This section sets a variable which will contain the path to your runas exe

    Code:
    SET local_user=limited
    Here we set a variable with the name of the local user which we are going to use to run the game as

    Code:
    SET exe_name=PathOfExile_x64.exe
    Here we set a variable with the EXE we will run for the game

    Code:
    SET exe_params=--nologo
    Here we set a variable with any additional runtime commands you want passed to the game (optional)

    Code:
    SET exe_path=D:/Program Files (x86)/Grinding Gear Games/Path of Exile
    Here we set a variable with the path to the game, being mindful that you need to reverse the slashes! So if you copy it from windows explorer, just replace all the \ with /

    Code:
    CD D:
    We enter the directory tree at the root of the drive which path of exile is installed, in my case it is the D drive.

    Code:
    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 /D \"%exe_path%\" && Start /high %exe_name% %exe_params%"
    First it gathers the processes list from windows, which will contain that exe.
    It passes that through a pipe to FIND, which will search for the specified name.
    If the search comes up with an errorlevel, then it means the exe was not found
    Then it runs the last crucial portion, which launches the exe as another user.
    Code:
    START %run_as% /user:%local_user% /savecred "cmd /C cd /D \"%exe_path%\" && Start /high %exe_name% %exe_params%"
    You can further break down the runas command into a more generic form:
    Code:
    START %run_as% /user:%local_user% /savecred "<Your command here>"
    The key here to notice, is that anything within the quoted section of the runas command must have reversed slashes in the path.
    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

  8. Thanks levelmax (1 members gave Thanks to thebbandit for this useful post)
  9. #278
    antroxxx's Avatar Member
    Reputation
    8
    Join Date
    Jan 2015
    Posts
    72
    Thanks G/R
    3/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    shift click + right click on the shortcut -> run as different user

    nothing else to do and it works flawless

  10. #279
    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)
    I could also shit on a paper and call it art, to each their own.
    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. #280
    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)

  12. #281
    dmn91's Avatar Member
    Reputation
    2
    Join Date
    Mar 2020
    Posts
    40
    Thanks G/R
    4/1
    Trade Feedback
    22 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by teapa View Post
    hello all
    i tried both ways(shortcut-.bat ) game is starting than closing and and i am getting path of exile suspended in task manager.
    pls help me game is installed in C parttion
    Haved same issue. Right click on PoE folder => Security => and add access to your user

  13. #282
    CausalityMerchant's Avatar Member CoreCoins Purchaser
    Reputation
    13
    Join Date
    Aug 2012
    Posts
    61
    Thanks G/R
    7/12
    Trade Feedback
    2 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    if your shortcut was working and stopped, it could be bcoz the 2nd account password expired, that just happened to me, changing the password of the 2nd account fixes it, you can use same password

  14. #283
    takeafun's Avatar Member
    Reputation
    1
    Join Date
    Oct 2021
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I want to ask about 4
    (4) Choose your newly added username and deny all access to this folder.
    If i do it like this
    6My50Pk.png
    It's block sub user to access this folder and i can't run poe just because this user even can't find poe file.
    Where i'm wrong?

  15. #284
    TehCheat's Avatar ★ Elder ★
    Reputation
    2557
    Join Date
    Oct 2013
    Posts
    1,896
    Thanks G/R
    347/2259
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by takeafun View Post
    I want to ask about 4

    If i do it like this
    6My50Pk.png
    It's block sub user to access this folder and i can't run poe just because this user even can't find poe file.
    Where i'm wrong?
    you need two users, one as your main user that has access to everything, and a second that doesn't have access to cheat folder. poe runs with second user that can't access cheat folder. cheats run as main user. then poe doesn't have access to the cheat folder.

    If sasha is your main user, you need to give access back and create a second user. If sasha is second user, then deny cheat folder and allow poe folder.
    Last edited by TehCheat; 10-22-2021 at 08:12 AM.

  16. Thanks armory236 (1 members gave Thanks to TehCheat for this useful post)
  17. #285
    CausalityMerchant's Avatar Member CoreCoins Purchaser
    Reputation
    13
    Join Date
    Aug 2012
    Posts
    61
    Thanks G/R
    7/12
    Trade Feedback
    2 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    if i start the game as main user i can log in, but starting it as limited user, when i try to log in it say there is new patch and to update the game, but its up to date, any ideas?

Page 19 of 28 FirstFirst ... 151617181920212223 ... 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 09:21 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