Questions tagged [powershell-ise]

PowerShell-ISE refers to Microsoft Windows PowerShell's Integrated Scripting Environment.

PowerShell-ISE refers to Windows PowerShell's Integrated Scripting Environment. Powershell ISE was introduced with Powershell 2.0 and ships with it as of Windows 7.

Features

  • Integrated debugger.
  • Syntax highlighting.
  • Tab completion.
  • Up to 8 PowerShell Unicode-enabled consoles (Runspaces) in a tabbed UI.
  • The ability to run only the selected parts in a script.
75 questions
8
votes
5 answers

PowerShell ISE - Is there a keyboard shortcut for commenting out lines or multiple lines

In PowerShell ISE I would like to comment out a line or multiple lines at once with a keyboard shortcut like how Sublime Text does this. Is this possible to add or remove the # shown in the example below via a keyboard…
Ste
  • 1,226
3
votes
2 answers

Power Shell Script to export mailbox

I have a script its working and it is programmed to take backup for every mailbox for a month and store it to local shared drive. When I run the script it export whole database instead of specified date range. I am not a programmer. I searched a…
1
vote
0 answers

Deleting Duplicate files with similar names in Powershell-ISE

I have a few hundred thousand files to go through which are all sitting in one folder. I need to find and delete the duplicates. The problem is, the duplicate files only have similar names, not exactly the same. The other parts are different. Is it…
0
votes
1 answer

Enabled AD Group Members of multiple groups

I'm trying to get only enabled members which are in multiple groups but not sure how to achieve this in the format I want. My current script is as follows. $GroupList = @('GroupA','GroupB' ) $Groupusers = @() foreach ($Groups in $GroupList) { …
guar
  • 1