Created Issue: Replace all pluralized nouns with singular nouns [1]
To be consistent with the rest of PowerShell, pluralized nouns must be replaced with singular nouns.Get-ScheduledTasks should be renamed as Get-ScheduledTask.Any other pluralized commands should be...
View ArticleCreated Issue: Get-ScheduledTasks has a lot of unneccessary script [2]
You could replace it all with:function Get-ScheduledTask { end { SCHTASKS.EXE /QUERY /FO CSV | ConvertFrom-Csv}}
View ArticleCommented Issue: Get-ScheduledTasks has a lot of unneccessary script [2]
You could replace it all with:function Get-ScheduledTask { end { SCHTASKS.EXE /QUERY /FO CSV | ConvertFrom-Csv}}Comments: You are right, but the function has been written in this way for two reasons :...
View ArticleCommented Issue: Replace all pluralized nouns with singular nouns [1]
To be consistent with the rest of PowerShell, pluralized nouns must be replaced with singular nouns.Get-ScheduledTasks should be renamed as Get-ScheduledTask.Any other pluralized commands should be...
View ArticleCommented Issue: Replace all pluralized nouns with singular nouns [1]
To be consistent with the rest of PowerShell, pluralized nouns must be replaced with singular nouns.Get-ScheduledTasks should be renamed as Get-ScheduledTask.Any other pluralized commands should be...
View ArticleClosed Issue: Replace all pluralized nouns with singular nouns [1]
To be consistent with the rest of PowerShell, pluralized nouns must be replaced with singular nouns.Get-ScheduledTasks should be renamed as Get-ScheduledTask.Any other pluralized commands should be...
View ArticleCommented Issue: Get-ScheduledTasks has a lot of unneccessary script [2]
You could replace it all with:function Get-ScheduledTask { end { SCHTASKS.EXE /QUERY /FO CSV | ConvertFrom-Csv}}Comments: You are right, but the function has been written in this way for two reasons :...
View ArticleClosed Issue: Get-ScheduledTasks has a lot of unneccessary script [2]
You could replace it all with:function Get-ScheduledTask { end { SCHTASKS.EXE /QUERY /FO CSV | ConvertFrom-Csv}}
View Article