Run PoE as a limited user menu

User Tag List

Page 13 of 28 FirstFirst ... 91011121314151617 ... LastLast
Results 181 to 195 of 406
  1. #181
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1444
    Join Date
    Apr 2006
    Posts
    4,002
    Thanks G/R
    295/588
    Trade Feedback
    1 (100%)
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehCheat View Post
    You probably can open as many as you'd like as long as you have different users for each 1 or 2. I haven't tested it, though.
    Just tested it, looks like it fails to create the mutex. In order to run more than two copies at a time, you'd probably have to mess with the mutex creation logic.

    Run PoE as a limited user
  2. #182
    PsiiX3's Avatar Member
    Reputation
    1
    Join Date
    Sep 2017
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this method give 100% ban protection when using PoeHud?

  3. #183
    roska's Avatar Active Member
    Reputation
    19
    Join Date
    Sep 2017
    Posts
    220
    Thanks G/R
    42/18
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PsiiX3 View Post
    Does this method give 100% ban protection when using PoeHud?
    one word, no.

  4. #184
    martti96's Avatar Member
    Reputation
    2
    Join Date
    Jul 2011
    Posts
    22
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't get the loot filters working as a limited user. When I run the game normally the loot filters are there.

  5. #185
    dirkbach666's Avatar Active Member
    Reputation
    24
    Join Date
    Aug 2013
    Posts
    59
    Thanks G/R
    39/22
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    You need to put the loot filters in the limited user's folder.. c:\users\limiteduser\documents\ggg\...

  6. #186
    MaxiVad's Avatar Member
    Reputation
    1
    Join Date
    May 2018
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If I run PoEHUD without limited user less than 10 sec, can I get banned?

  7. #187
    MACROS4LIFE's Avatar Active Member
    Reputation
    48
    Join Date
    Dec 2015
    Posts
    467
    Thanks G/R
    58/46
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    poehud no longer exists ( for now ) so I don't know why you guys are so worried about limited user method. lol
    GH it's like cocaine, once you used, you can't forget.

  8. #188
    Amatus's Avatar Member
    Reputation
    1
    Join Date
    Feb 2016
    Posts
    3
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have the filters in my limited user's folder but I cannot access them when running poe as aa limited user. When on the limited users account I can access the filters under the UI section, but as soon as I swap back to my main account I can no longer see them under the UI section. Anyone know a fix for this?

  9. #189
    Konrad Martulewicz's Avatar Active Member
    Reputation
    17
    Join Date
    Oct 2014
    Posts
    18
    Thanks G/R
    0/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Am i an idiot? Whenever i launch the runas shortcut with my details i get Poe Exception: "Unable to open Content.ggpk. You might have another copy of the game already running.". When i launch same shortcut but without "runas", game runs fine.

  10. #190
    thebbandit's Avatar Contributor
    Reputation
    243
    Join Date
    Feb 2010
    Posts
    427
    Thanks G/R
    23/204
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    I was digging around and couldnt find the relevant information that I used to set up my Steam exe as a limited user. I wanted to share this so I can link back to this Information from my Release post.

    Follow the instructions from the main post (Run PoE as a limited user), when It comes to making the shortcut for the game do this instead:

    Create a new Shortcut
    In the target field put:
    Code:
    C:\Windows\System32\runas.exe /user:ReplaceWithLimitedUserName /savecred "C:\Program Files (x86)\Steam\Steam.exe"
    In the Start in field put:
    Code:
    "C:\Program Files (x86)\Steam"
    Go into steam settings and turn off autostart on boot

    Add the shortcut you created to your Startup folder (Open File Explorer and type shell:startup as the location and then press enter)

    Steam will now launch under the user account you replaced the "ReplaceWithLimitedUserName" with


    Update:
    I am no longer using steam because of the rediculous patch times. It is highly recommended to use the stand alone client.

    For information purposes I am updating this post with the new Batchfile I am using:

    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 *
    

  11. #191
    manda149314's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    27
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nvm not working

  12. #192
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those who have PoE installed on another drive than C, add '/d' to the command like this:
    Code:
    C:\Windows\System32\runas.exe /user:Exile /savecred "cmd /C cd /d \"A:\Path of Exile/\" && PathOfExile_x64.exe"

    @boterang - might be worth updating the first post
    Don't just say thanks, click thanks!

  13. #193
    datz's Avatar Active Member
    Reputation
    23
    Join Date
    Aug 2013
    Posts
    538
    Thanks G/R
    170/19
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You guys think this method works with other games too?

  14. #194
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1444
    Join Date
    Apr 2006
    Posts
    4,002
    Thanks G/R
    295/588
    Trade Feedback
    1 (100%)
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by datz View Post
    You guys think this method works with other games too?
    It was pulled from Diablo 3's methods, so yeah. That said, there are still plenty of ways that whatever game you're thinking of using it on could detect your cheats. If their anti-cheat is doing something GGG's isn't, it may not provide enough protection.

  15. #195
    TehCheat's Avatar ★ Elder ★
    Reputation
    2564
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2266
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by datz View Post
    You guys think this method works with other games too?
    If the anti-cheat on other games isn't kernel/driver level, then yes.

Page 13 of 28 FirstFirst ... 91011121314151617 ... LastLast

Similar Threads

  1. [How-To] Run PoE as a limited user
    By boterang in forum PoE Bots and Programs
    Replies: 442
    Last Post: 6 Days Ago, 03:53 PM
  2. [Release] Run poe as limited, app.
    By Kirasaka in forum PoE Bots and Programs
    Replies: 80
    Last Post: 06-13-2025, 09:48 AM
  3. [Guide] A more detail guide "How to Run Path of exile as a limited user"
    By LeeBee in forum PoE Bots and Programs
    Replies: 1
    Last Post: 08-18-2023, 10:57 AM
  4. Awakedned PoE Trade as limited user?
    By TacoBiter in forum Path of Exile
    Replies: 5
    Last Post: 05-30-2022, 12:26 PM
  5. Replies: 1
    Last Post: 06-27-2019, 12:24 PM
All times are GMT -5. The time now is 04:38 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search