dspent 0 Report post Posted April 12, 2004 If I set a variable equal to a macro how would I write it... meaning which is correct? $DomainName = "@LogonDomain" or $DomainName = @LogonDomain Thanks Share this post Link to post Share on other sites
esfalk 0 Report post Posted April 12, 2004 I'd assume the latter. $DomainName = @LogonDomain Share this post Link to post Share on other sites
dspent 0 Report post Posted April 12, 2004 Thanks......that is the correct way....no quotes. Share this post Link to post Share on other sites
ZenKensei 0 Report post Posted April 12, 2004 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 Share this post Link to post Share on other sites