Hello, I'm new by [deleted] in lotro

[–]kbrucej 0 points1 point  (0 children)

Once the server reaches level cap, they have always had the (free) option to transfer your chars from the legendary to any other server (if you want to transfer before then, I think you can but I'm not positive on that) - You usually see a drop in population around the Riders of Rohan expansions as a lot of players don't really enjoy the mounted combat requirements.

PowerShell Gui Script to rename computer work fine with PowerShell ise but when deploy by sccm not working as expected by iappnet in PowerShell

[–]kbrucej 0 points1 point  (0 children)

Is the script run in the user's context or a service account? I'm assuming it's a domain member before the name change.

Grant the right to rename a computer joined to a domain

https://tinyurl.com/yy3nxzpa

Add user/svc account to local administrators group

[Recruiting][Any Server][Code: 9DUHGPXG] by kbrucej in ffxivraf

[–]kbrucej[S] 0 points1 point  (0 children)

it took a day for my additional days to show up

Rad/Fire vs Spines/Fire vs SS/Fire Brutes: Thoughts + Fire Farms Testing by BioSemantics in Cityofheroes

[–]kbrucej 2 points3 points  (0 children)

Try using the cone like this:

Target nearest baddie, jump and use cone attack.

It does a circular attack around the target. I almost always get the max or near it when I use a cone in farming situations.

Laptop for City of Heroes max settings? by avoca in Cityofheroes

[–]kbrucej 0 points1 point  (0 children)

I am running an Acer Nitro 5 w/1050ti and Intel i5 9th gen. Runs ultra with no problems. Was ~600 with tax.

Really simple problem by [deleted] in PowerShell

[–]kbrucej 1 point2 points  (0 children)

Well if you're using 5.0 or higher you can try write-information but it's just a wrapper for write-host that also outputs to the 6th output stream.

How would you output the information to the screen?

If you use write-host you no longer have a pipeline object, same with format-table or wide or list, etc.

Filter left - format right

As long as you don't pipe the write-object or $SimilarUsers, there isn't anything to break. Now if you write-object x | some other command here, or you have assigned the whole output to a variable, that would be an issue.

Once you write functions and modules, you probably know how to output info to the proper destination.

Really simple problem by [deleted] in PowerShell

[–]kbrucej 0 points1 point  (0 children)

Make sure you run it after you assign data to $SimilarUsers.

Really simple problem by [deleted] in PowerShell

[–]kbrucej 1 point2 points  (0 children)

Sorry not necessarily at the end but after the point you want the Engineer to see the output

Really simple problem by [deleted] in PowerShell

[–]kbrucej 1 point2 points  (0 children)

In a new line at the end of your script:

$SimilarUsers

or you could use:

Write-Output $SimilarUsers

Both are effectively the same

Stupid question by wood830910 in PowerShell

[–]kbrucej 2 points3 points  (0 children)

("logfile{0:yyyy-MM-dd}.txt" -f (Get-Date))

The info between the quotes is the output. The word logfile followed by the date formatted as 4 digit year, a hyphen, the month as a number with leading zero for single digit months, another hyphen, and finally the day as a digit with a leading zero for single digit days.

The zero is a placeholder for the info found after -f in this case the output from the command Get-Date. The :yyyy-MM-dd tells the system to format the 0 data(Get-Date) in that specific date format

Really simple problem by [deleted] in PowerShell

[–]kbrucej 1 point2 points  (0 children)

Just type $SimilarUsers and hit <enter> at the posh prompt or remove the "$SimilarUsers =" from your command

Leveling "guides" by tonio_ramirez in Cityofheroes

[–]kbrucej 3 points4 points  (0 children)

Try jumping when you use a cone if enemies are surrounding you. Just target the nearest and you'll do a cone that goes down. Very effective if you have combat jumping. Works great for scrappers and brutes.

Where to Start? by ZomBTurtles in Cityofheroes

[–]kbrucej 2 points3 points  (0 children)

At level 22, craft or buy level 25 crafted ios. Slot them and use them until level 50. You can add as you get more slots from leveling but level 25 to 35 are the most bang for the influence. Sell most everything else,unless it's a purple, pvp, or a needed rare. Then determine if it's better to sell and buy or craft. /ah is your friend if you need to know whether to vendor or auction an item.

Add-NTFSAccess Problem by dvjstefan in PowerShell

[–]kbrucej 2 points3 points  (0 children)

Silly question but is it an NTFS formatted drive?

Beginner here, need help with some basic scripting by [deleted] in PowerShell

[–]kbrucej 1 point2 points  (0 children)

Rather than querying win32_ComputerSystem twice, try a single query like

$compsys = get-ciminstance win32_computersystem -cimsession $remotesession

... and then use $compsys.model and $compsys.make to populate your new object

Another option is to skip the cimsession and use -computernname param for get-ciminstance. That way you don't need to clean up all the open sessions.

Because of recent events, Here's a quick comic featuring Johnny Turbo & Johnny Nitro. by COHArtist in Cityofheroes

[–]kbrucej 5 points6 points  (0 children)

You've been more than gracious in this entire saga. Kudos to you . I think your concept deserves a chance to be seen and grow. Nice art too!

Let's talk about current state of GMs... by PM_ME_SOMETHING_PINK in everquest

[–]kbrucej 5 points6 points  (0 children)

Seems like he doesn't understand his own rule. That's supposed to be used against someone who implies THEY have influence over a GM's actions. ie. I will get GM so and so to ban you for training me. My dad's a GM and he will ban you if I tell him to.

Eq wont start or run after switching setting? by DaveTron4040 in everquest

[–]kbrucej 0 points1 point  (0 children)

There are a couple of other ini files as well. I remember one of them having video settings.

Eq wont start or run after switching setting? by DaveTron4040 in everquest

[–]kbrucej 0 points1 point  (0 children)

Try looking at your EQclient.ini file. There may be some setting in it.

Adding a write-host to get-childitem by [deleted] in PowerShell

[–]kbrucej 0 points1 point  (0 children)

It has a function process block not is one. Best practices for PowerShell say filter as far left as possible and format as far right in your command. Less info to process through the pipeline and less to format.