Jump to content

@logondomain


Recommended Posts

Keep in mind that you may not actually need to declare this variable ($DomainName), you may be able to simply use @LogonDomain in the place of the variable within your scripts. The next single line of code returns the same value as the 2 lines of code where the variable is first declared. Example:

MsgBox(0, "Window Title", @ComputerName)

returns the same info as

$CompName = @Computername
MsgBox(0, "Window Title", $CompName)

Of course it all depends on how your planning to use the variable, but its something you may find useful in certain situations.

Z/K

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...