Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Please read, I need some help with PowerShell. Read Task 1 and then help with Task 3 please, thanks in advance. Start-Job Invoke-Command Yes
Please read, I need some help with PowerShell. Read Task 1 and then help with Task 3 please, thanks in advance.
Start-Job
Invoke-Command
Yes
Read-Host
Write-Output
Task 1
Need a list of running processes. The list should include only process names, IDs, VM, and PM columns. Put the list into an HTML-formatted file named C:Procs.html. Make sure that the HTML file has an embedded title of, "Current Processes." Display the file in a Web browser and make sure that title appears in the browser window's title bar.
Task 3
Repeat Task 1, modifying your command so that the VM and PM columns of the HTML file display values in megabytes (MB), instead of bytes. The formula to calculate megabytes, displaying the value as a whole number, goes something like $_.VM / 1MB -as [int] for the VM property.