I have below PowerShell logic to copy the data. Now we are moving this logic to the Angular application.
So, I want to save this data in the database table. Could you please advise how can I store them?
In the application, if the user selects the country value, then it should automatically populate the State, Outlook, and Teams Column
if (country -eq "US") {
$State = "Yes"
$outlook = "Office 365"
$Teams = "Office 365"
}
elseif (Country -eq "UK") {
$state = "NO"
$outlook = "Exchange"
$team = Skype
}