Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Microsoft Technologies Articles
Page 168 of 175
How to overwrite or remove PowerShell alias?
You can overwrite the Powershell alias by redefining it. For example, if the alias is created Edit for Notepad.exe and if you want to overwrite it with another program, say wordpad.exe then use the below command.We will overwrite the Edit alias cmdlet with Wordpad.exe using the Set-Alias command. When you close the PowerShell session, it will remove newly created aliases and modified aliases.Set-Alias edit "C:\Program Files\Windows NT\Accessories\wordpad.exe"You cannot overwrite pre-defined aliases. It will throw an exception.For example, when you try to modify dir alias which points to Get-Content, error output will be as below.To remove newly created aliases without closing ...
Read MoreHow to create an array in PowerShell?
To create or declare an array in PowerShell, there are few methods.You can directly assign values to the variable and separate it by comma (, ) and that variable becomes the variable.For example, $a = "Apple", "Dog", "Cat", "Banana", "Camel"$a is now an array. To access the variable you can use the Indexing method. The first value will be stored at 0, second at 1 and so on.$a[0] will give the output “Apple”, $a[1] will give the output “Dog” and so on. Negative indexing also works in the array. -1 is the last index, -2 is the second last and ...
Read MoreHow Microsoft's Surface Pro 4 and Windows 10 beat Apple and Google in productivity?
The digital world has always been action packed and aggressively competitive since its existence. With exponentially continuous breakthroughs in the world of science and technology, the tech giants like Microsoft, Google, and Apple have been within a perpetual war against each other and the war doesn’t seem to come to an end in the near future.Unlike other kinds of war, whether real or virtual, instead of destructive consequences, this ‘tech-war’ only has constructive consequences bringing an immense amount of productivity for the end users like me and you. This competition in technology has shaped our present and will define our ...
Read MoreExploring ERP Modules of Oracle E-Business Suite
The acronym ERP stands for enterprise resource planning. It refers to the systems and software packages used by organizations to manage day-to-day business.Oracle E-Business Suite is one of the most reputed ERP product which is currently available in the market – developed by Oracle. In the world of enterprise resource planning, very few software products have really made to the top ranks when it comes to worldwide implementations. Based on market share – SAP, Microsoft Dynamics are the close vendors who try to get the ERP share in almost all the regions.What is Oracle E-Business Suite?Oracle’s E-Business Suite (also known ...
Read MoreWhat is Facebook Workplace? Can it compete with SLACK and Microsoft's TEAMS?
Great companies work on enormous connections. It is the collaboration between employees which keeps the work going, ideas get shared instantaneously, decisions are taken faster, the entire team is updated, and stays on the same page at all times. These connections eventually drive employees to strive harder and perform to the best of their ability. In this article, we discuss the various enterprise social media for communication and collaboration: Facebook Workplace, Slack and Microsoft’s Teams and how they stand against each other in times of tough competition.Facebook WorkplaceBusiness ideas are needed to turn into action. Goals and expectations are required ...
Read MoreWhat are the Latest MS Word 2016 Specifications, Features, and Benefits?
The latest version of Windows for Desktop surfaced in March 2017 with titled version 1703. The latest version has brought many changes starting from Bing search engine integration to Skype video call, all under one roof. Also, Microsoft has added some new font styles to make it even more competitive. Microsoft’s recent work in this regard gives a clear idea on which direction it wants to improve its services. In fact, there are now many competitors in the market that are offering documentation software, such as MS WORKS.They are doing such a good job that Google Docs has also given ...
Read MoreThe 5 Soft Skills that will get you Hired
Going for a job interview? So, you are good with technical skills, but what about the soft skills. That one hour of the interview will be totally focused on how you respond to their questions. Landing on a great job opportunity isn’t just about having the technical abilities but also the soft skills. If it did, there’d be little reason for employers to interview job candidates face-to-face.Soft skills are very important in a working environment. Research shows that so-called “soft skills” — your ability to work well with others, communicate clearly and solve problems — matter much more than many ...
Read MoreHow to change the size of the Console using PowerShell?
You can change the size of the PowerShell Console with GUI and CLI both.With GUI −With CLI −To change the Width of the console,$host.UI.RawUI.WindowSize.Width = 150To change the Height of the console,$host.UI.RawUI.WindowSize.Height = 60
Read MoreHow to change the Foreground color or Font color of the console using PowerShell?
Font color is termed as the Foreground color in the PowerShell. To change the font color you can use the console GUI property “Screen Text”. There are various 16 colors available and you can change RGB properties as well.CommandTo change the color with the script, use the below command.$Host.UI.RawUI.ForegroundColor = "Yellow"OutputYou can see the immediate change in the Foreground color.
Read MoreHow to get only folders but not the files in the Get-ChildItem in PowerShell?
To get only folders excluding files, we need to use –Attribute parameter with Directory attribute.CommandGet-ChildItem D:\Temp\ -Attributes DirectoryOutputDirectory: D:\Temp Mode LastWriteTime Length Name ---- ------------- ------ ---- d----- 13-12-2019 09:52 GPO_backup d----- 24-11-2018 11:31 LGPOSimilarly, you can combine different operations.To get the only system directories, use the below command.Get-ChildItem D:\Temp\ -Attributes Directory –System -RecurseTo get the system directories that are hidden.Get-ChildItem D:\Temp\ -Attributes Directory -Recurse –System -HiddenTo get the system directories which are Readonly.Get-ChildItem D:\Temp\ -Attributes Directory -Recurse –System -Readonly
Read More