Found 2043 Articles for Microsoft Technologies

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

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

465 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

How to use the -recursive parameter in Get-ChildItem using PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:33:19

908 Views

To display the contents of the subfolders including files and folders, -Recurse parameter is used.CommandGet-ChildItem -Path D:\Temp -Recurse-Recurse parameter will not display the hidden files and folders.OutputDirectory: D:\Temp Mode                LastWriteTime         Length Name ----                -------------         ------ ---- d-----       13-12-2019     09:52                GPO_backup d-----       24-11-2018     11:31                LGPO -a----       07-05-2018     23:00     ... Read More

How to list the subfolder contents using Get-ChildItem using PowerShell?

Chirag Nagrekar
Updated on 23-Jan-2020 07:30:49

6K+ Views

To display the contents of the subfolders including files and folders, -Recurse parameter is used.CommandGet-ChildItem -Path D:\Temp -Recurse-Recurse parameter will not display the hidden files and folders.OutputDirectory: D:\Temp Mode                LastWriteTime         Length Name ----                -------------         ------ ---- d-----       13-12-2019     09:52                GPO_backup d-----       24-11-2018     11:31                LGPO -a----       07-05-2018     23:00     ... Read More

Microsoft’s Mixer – Experience a New Level of Live Streaming Games

karthikeya Boyini
Updated on 23-Jan-2020 07:26:18

69 Views

Are you a gamer, loves to play live streaming games? But worry about the slower response in live streaming? On many occasions you feel frustrated due to high latency period, isn’t it? It is a common concern with many live streaming platforms, issues like poor client response, slow rendering visuals discourages the gamer’s enthusiasm.Not to worry anymore, the technology giant Microsoft has recently announced a big evolution in its live streaming platform with a new name called “Mixer”- which is not only a live streaming platform but an interactive live streaming platform. People who are already associated with Microsoft community ... Read More

Microsoft’s Mixed Reality Headset – One Step Ahead

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

74 Views

You may have got the chance to experience one of the amazing headsets powered with awesome technologies as Augmented Reality (AR) or Virtual Reality (VR) and fallen in love with them. And that must be a wonderful experience when you enjoy a roller coaster ride or swimming in a deep sea in the virtual world still sitting on your couch in your living room with a VR or AR headset. Isn’t it amazing, when you think that how much the technologies evolved so far? It is not so long back when these headsets were only used for listening songs or ... Read More

Microsoft Emergency Path for RCE (Remote Code Execution) in Windows Malware Scanner (CVE-2017-0290)

karthikeya Boyini
Updated on 23-Jan-2020 07:13:48

87 Views

The famous security researcher Tavis Ormandy has recently announced on Twitter that he and his researcher Natalie Silvanovich has discovered a vulnerability called “Remote Code Execution” in recent memory. According to them, the vulnerability will work against the default installation which is “Wormable” has the ability to replicate itself on an infected computer and then spread to the other PCs automatically in the network.Microsoft has announced that their own antivirus is made of Windows 7, 8.0, 8.1 and 10 computers as well as Windows Server 2016, is vulnerable due to the latest released out-of-band update for the patch “Remote Code ... Read More

Latest MS Excel Specifications, Features and Benefits

karthikeya Boyini
Updated on 23-Jan-2020 05:43:01

146 Views

Since its arrival in March 2017, the new updated version of Windows Excel has grabbed good words of mouth from the global users. It is not new that Microsoft always tries to surprise its users by adding exciting features to its updated applications, this version no 1703 of MS Excel also stands tall in that. The introduction of Dubai Font style and integration of Bing search engine are some few exciting features from the list. Let’s discuss them in a bit detail.Combine BinaryThough, it is not among the newly added features but yet is the improved one than the previous. ... Read More

Advertisements