Viewing 15 posts - 1,546 through 1,560 (of 3,221 total)
$INSTALLSHAREDDIR = Get-Content "C:\test\Install_ConfigurationFile.ini" | Where-Object {$_ -like'INSTALLSHAREDDIR=*'}
$INSTALLSHAREDDIR = "'"" + $INSTALLSHAREDDIR + "\MSSQL11.INST3'""
What I did was escape " with '.
March 22, 2015 at 2:21 am
I would suggest renaming the parameters but you don't appear to be attempting to use them. Perhaps if you commented your code with your intentions then I could understand.
March 22, 2015 at 2:15 am
robert.mcleod (3/20/2015)
March 20, 2015 at 7:31 am
1) Not understanding the need to separate the logical from the physical. The application is not the database and vice versa. The application places requirements on the database but these...
March 20, 2015 at 2:21 am
I have now:
function InstallSQL
{
[CmdletBinding()]
Param
(
[Parameter(Position=0,Mandatory=$true)][string]$action
...
March 19, 2015 at 9:31 am
Microsoft has a reasonable track record when it comes to buying in technologies and making products from them and/or incorporating them into existing products. I will not predict whether this...
March 19, 2015 at 3:34 am
It is probably me but I don't get it. Are you wondering how do use functions and parameters in a PowerShell script? Are you wanting an install function and an...
March 18, 2015 at 2:19 pm
Great, thanks.
Minor suggestion: Perhaps it would have been worthwhile writing the exception to the output file.
March 18, 2015 at 1:26 am
Eric M Russell (3/17/2015)
Miles Neale (3/17/2015)
Eric M Russell (3/17/2015)
Miles Neale (3/17/2015)
March 18, 2015 at 1:20 am
The Fault (3/17/2015)
Gary Varga (3/17/2015)
Part of me believes that in this century we may move to a model where ownership of data is considered "so 20th century"
I'd tend to disagree,...
March 18, 2015 at 1:12 am
Eric M Russell (3/17/2015)
Gary Varga (3/17/2015)
March 18, 2015 at 1:07 am
That's it! Suggest all developers heads are just full of hot air, why don't you!!! :hehe:
More seriously: :sick:
After reading the first bubble I was expected something akin to "...and how...
March 18, 2015 at 1:01 am
Part of me believes that in this century we may move to a model where ownership of data is considered "so 20th century", however, where value can be found so...
March 17, 2015 at 12:50 am
Shawn Richards (3/16/2015)
Matt S. (9/29/2010)
I hear you. I've seen DBAs light up with some glimmer of hope when I'm hired to reign in developers gone wild. It's because I sell...
March 16, 2015 at 5:16 pm
GilaMonster (3/16/2015)
Gary Varga (3/16/2015)
Phil Parkin (3/16/2015)
GilaMonster (3/16/2015)
March 16, 2015 at 5:42 am
Viewing 15 posts - 1,546 through 1,560 (of 3,221 total)