1) Write a PowerShell script that takes names of two files as parameters and cop
ID: 3741083 • Letter: 1
Question
1) Write a PowerShell script that takes names of two files as parameters and copies content of one file into another without asking any questions. The copy should contain a note that it is a copy, name of the original file, current date and time after the content.
2) Write a PowerShell script that takes a file name that does not currently exist, as a parameter and ask if a user wants to create that file. If the answer is ‘Y’ and the file does not exists, it is created. If the file does exist, an error message is displayed.
Explanation / Answer
as far i knw power shell scripting the below code is used for copying text in date format from one file to aunother.
use the same to copy text also
Get-Content C:InputFile.txt | Where-Object {$_.StartsWith((Get-Date).AddDays(-1).ToString("yyyyMMdd"))} | Out-File C][/quote]
try this ..it works perfectly
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.