Auto fill end condition commentary

Post feature requests, product enhancement ideas, and other product-specific suggestions here. Do not post bug reports.
Forum rules
Do not post any licensing information in this forum.
This topic is 4 years and 6 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked
User avatar
owinsloe
Posts: 161
Last visit: Mon Mar 18, 2024 12:33 pm
Been upvoted: 1 time

Auto fill end condition commentary

Post by owinsloe »

It would be nice if you could set an option to place commentary at the end of scriptblocks such as if,do,switch,while,try etc etc.

This provides an nice visible method of determining where the completion of each code block concludes.

eg.

If (-not $User)
{
#Obtaining Local Account SIDs for $Bin.Name comparison.
Log "Get-WmiObject -Class Win32_UserAccount"
$WMI_UsrAcct = Get-WmiObject -Class Win32_UserAccount -ComputerName $Computer -Filter "Domain = '$Computer'"
#Using a While Loop to search Local User Accounts for Matching $Bin.Name
$i = 0
While ($i -le $WMI_UsrAcct.Count)
{
If ($WMI_UsrAcct[$i].SID -eq $Bin.Name)
{
$User = $WMI_UsrAcct[$i].Caption
Break
} #End If ($WMI_UsrAcct[$i].SID -eq $Bin.Name)
$i++
} #End While ($i -le $WMI_UsrAcct.Count)
} #End If (-not $User)
User avatar
brittneyr
Site Admin
Posts: 1649
Last visit: Mon Mar 18, 2024 1:47 pm
Answers: 38
Been upvoted: 30 times

Re: Auto fill end condition commentary

Post by brittneyr »

You are welcome to file a feature request here and our development team will look into it:
https://www.sapien.com/requests
Brittney
SAPIEN Technologies, Inc.
This topic is 4 years and 6 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked