Found 989 Articles for Software & Coding

How to search for files using the wildcard character (*) in PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:48:25

3K+ Views

You can also search for files with a specific name or using the wildcard (*) character.CommandBelow command will search for the files (including hidden files) starting with “Bac”.Get-ChildItem D:\Temp -Recurse -Force -Include Bac*OutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp -Recurse -Force -Include Bac*     Directory: D:\Temp\GPO_backup\{C9C3DB4C-2E51-4201-B3C3-7C0F1ACECBE9} Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a----       24-11-2018     11:34           6215 Backup.xmlCommandWhen you use the wildcard character (*) at both the ends, file ... Read More

How to use the wildcard character (*) in Get-ChildItem in PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:47:45

3K+ Views

You can also search for files with a specific name or using the wildcard (*) character.CommandBelow command will search for the files (including hidden files) starting with “Bac”.Get-ChildItem D:\Temp -Recurse -Force -Include Bac*OutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp -Recurse -Force -Include Bac*     Directory: D:\Temp\GPO_backup\{C9C3DB4C-2E51-4201-B3C3-7C0F1ACECBE9} Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a----       24-11-2018     11:34           6215 Backup.xmlCommandWhen you use the wildcard character (*) at both the ends, file ... Read More

How to search for a specific extension using Get-ChildItem in PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:47:07

2K+ Views

To get the output of the get-childitem with a specific extension, we need to use –includeparameter.ExampleIn the below example, we will use the below script to get only .xml files.Get-ChildItem D:\Temp\ -Recurse -Include *.xmlOutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp\ -Recurse -Include *.xml     Directory: D:\Temp\GPO_backup\{C9C3DB4C-2E51-4201-B3C3-7C0F1ACECBE9} Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a----       24-11-2018     11:34           6215 Backup.xml -a----       24-11-2018     11:34       ... Read More

What are the Opportunities in Artificial Intelligence?

karthikeya Boyini
Updated on 23-Jan-2020 07:55:46

587 Views

Artificial Intelligence is one the hot topic in the information and technology which predominantly includes general AI, machine learning, expert systems (which can be the same thing) data mining, Neural Networks and fuzzy systems. These topics have become the most wanted and essential topics among the scholars, students, faculties and professionals.As AI had already created enough impact among the public, this article would help the upcoming generation to know more about the career opportunities that are related to this domain. And we need to understand that fact that, Machine learning is the practical face of AI. It’s about identifying sources ... Read More

How to use Get-ChildItem in PowerShell to filter a specific extension?

Chirag Nagrekar
Updated on 23-Jan-2020 07:46:01

16K+ Views

To get the output of the get-childitem with a specific extension, we need to use –includeparameter.ExampleIn the below example, we will use the below script to get only .xml files.Get-ChildItem D:\Temp\ -Recurse -Include *.xmlOutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp\ -Recurse -Include *.xml     Directory: D:\Temp\GPO_backup\{C9C3DB4C-2E51-4201-B3C3-7C0F1ACECBE9} Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a----       24-11-2018     11:34           6215 Backup.xml -a----       24-11-2018     11:34       ... Read More

What is the use of -Force parameter in Get-ChildItem in PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:41:17

684 Views

To display files along with hidden files, you need to use –Force parameter.CommandGet-ChildItem D:\Temp\ -ForceOutputIf you see the above output, hiddenfile.xlsx is the hidden file and same can be identified with the mode where –a-h—attribute of the file.You can also use this parameter with –Recurse or –Depth.Get-ChildItem D:\Temp\ -Recurse -Force

How to display files/folders including hidden files/folders in PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:40:15

466 Views

To display files along with hidden files, you need to use –Force parameter.CommandGet-ChildItem D:\Temp\ -ForceOutputIf you see the above output, hiddenfile.xlsx is the hidden file and same can be identified with the mode where –a-h—attribute of the file.You can also use this parameter with –Recurse or –Depth.Get-ChildItem D:\Temp\ -Recurse -Force

How to get only hidden files and folders in PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:38:59

855 Views

To display only hidden files and folders –hidden parameter is used while using Get-ChildItem.CommandGet-ChildItem D:\Temp\ -HiddenOutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp\ -Hidden     Directory: D:\Temp Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a-h--       13-12-2019     09:52           6182 Hiddenfile1.xlsxCommandSimilarly, you can use this –Hidden with –Recurse or–DepthGet-ChildItem D:\Temp\ -Recurse -HiddenOutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp\ -Recurse -Hidden     Directory: D:\Temp Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a-h--       13-12-2019     09:52           6182 Hiddenfile1.xlsx     Directory: D:\Temp\GPO_backup Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a-h--       13-12-2019     09:52              0 HiddenFile2.txt

How to use Depth pararmeter in Get-ChildItem PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:38:08

2K+ Views

When –Depth parameter is used along with Get-ChildItem, it controls the recursion of displaying the subfolders and their contents. For example, if –Depth parameter is set to 1 then it will display only the content of the parent folder and immediate subfolders but not the subfolders of the subfolders.CommandWhen you specify –Depth parameter, no need to add –Recursion parameter. It will automatically set the depth level.Get-ChildItem D:\Temp\ -Depth 1OutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp\ -Depth 1     Directory: D:\Temp Mode                LastWriteTime         Length Name ----             ... Read More

How to control recursion in Get-ChildItem in PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:37:03

1K+ Views

When –Depth parameter is used along with Get-ChildItem, it controls the recursion of displaying the subfolders and their contents. For example, if –Depth parameter is set to 1 then it will display only the content of the parent folder and immediate subfolders but not the subfolders of the subfolders.CommandWhen you specify –Depth parameter, no need to add –Recursion parameter. It will automatically set the depth level.Get-ChildItem D:\Temp\ -Depth 1OutputPS C:\WINDOWS\system32> Get-ChildItem D:\Temp\ -Depth 1     Directory: D:\Temp Mode                LastWriteTime         Length Name ----             ... Read More

Advertisements