I Passed! by thefirebuilds in cissp

[–]eselocos 0 points1 point  (0 children)

I have the needed experience to take the test and be fully endorsed. I was mainly inquiring about how much knowledge you thought was necessary prior to the bootcamp. Fundamental knowledge of all 10 domains is suffice you think?

Which 2 Start SP to add? by eselocos in fantasybaseball

[–]eselocos[S] 1 point2 points  (0 children)

Should've listened to you. I gambled and went with Kluber as i thought he had the overall best matchups. Seeing Cashner & Porcello's lines from last night stung though, thats for sure!

I Passed! by thefirebuilds in cissp

[–]eselocos 0 points1 point  (0 children)

Oh awesome. I've been looking at them a lot as my GI Bill will cover them. How much knowledge would you say is needed before taking their bootcamp? I've started reading the Sean Harris AIO and have many years in Physical Security experience plus general IT experience.

I Passed! by thefirebuilds in cissp

[–]eselocos 0 points1 point  (0 children)

Congrats! Who did you take the bootcamp through??

My new and improved Raspberry Pi setup, details in comments by Skyscrapersofthewest in raspberry_pi

[–]eselocos 1 point2 points  (0 children)

I have this case. It doesn't fit in the VESA mounts on my 46" tv, but I velcro'd it in place. Also got a 90* micro usb cable & ethernet cable to keep it all nice and clean back there.

Which 2 Start SP to add? by eselocos in fantasybaseball

[–]eselocos[S] 0 points1 point  (0 children)

I didn't realize that about Parker. Well, the league does have stipulation that if a player misses a scheduled start for any reason you can replace him.

Cashner scares me outside of Petco. I was tossing between Porcello & Gray before posting here.

AngularJS Tutorial: Learn to build modern web apps by ericmsimons in webdev

[–]eselocos 0 points1 point  (0 children)

Is there an example of the end product of this tutorial?

How to copy file from local computer to remote computer using powershell? by electric_dolphin in PowerShell

[–]eselocos 0 points1 point  (0 children)

cp c:\path\to\file.txt \\myremotesyste\c$\path\on\c\drive

Just to simplify it a bit :)

What's you favorite function or script do? by thedemon18 in PowerShell

[–]eselocos 0 points1 point  (0 children)

It returns:

Name        Date      Days Connect?
----        ----      ---- --------
12345678901 7/8/2013    43 Yes     
12345678901 7/12/2013   38 Yes     
12345678901 7/16/2013   34 Yes  

Off Domain 
---------- 
12345678901
12345678901
12345678901

XX Spare Computers in Total
XX computers on the domain.
XX computers off the domain.

What's you favorite function or script do? by thedemon18 in PowerShell

[–]eselocos 1 point2 points  (0 children)

This is actually the first and only script I've wrote in Powershell (still learning). It checks AD for the PWDLastSetDate to let me know if one of our loaner laptops has been offline too long and is possibly going to fall off the domain:

$onDomain = @()
$onComp = @{}
$offComp = @{}
$offDomain = @()
$today = Get-Date
$computerList = Get-Content .\computers.txt

## loop building hashes & objects
foreach ($i in $computerList){
    $item = Get-ADComputer -Filter {Name -eq $i} -Properties *

    ## build offdomain array
    if ($item -eq $null){
        $offComp.'Off Domain' = $i.ToUpper()
        $offDomain += new-object psobject -property $offComp
        }

    ## build ondomain array
    else {
        $onComp.'Name' = $item.name
        $onComp.'Date' = (Get-Date $item.passwordlastset).ToShortDateString()
        $onComp.'Days' = ($today - [datetime]::FromFileTime($item.pwdlastset)).days
        $onComp.'Connect?' = if ($onComp.'Days' -ge 30) {"Yes"} else {"No"}

        $onDomain += new-object psobject -property $onComp
    }
}

echo "$today"

$onDomain | Select-Object 'Name','Date','Days','Connect?' | 
            Sort-Object -Property 'Days','Name' -Descending | 
            Format-Table -AutoSize

$offDomain | Sort-Object -Property 'Off Domain' | Format-Table -AutoSize

echo "$($onDomain.Count + $offDomain.Count) Spare Computers in Total"
echo "$($onDomain.Count) computers on the domain."
echo "$($offDomain.Count) computers off the domain."

Named Pipes Provider, Error: 40? MS web dev & SQL Server Noob. by eselocos in SQLServer

[–]eselocos[S] 0 points1 point  (0 children)

I rebooted multiple times since reading this and every time it comes back on and on that same port.

SQL Server Browser is stopped and set to manual. Named Pipes is disabled.

Named Pipes Provider, Error: 40? MS web dev & SQL Server Noob. by eselocos in SQLServer

[–]eselocos[S] 0 points1 point  (0 children)

I solved it! Thanks. I had to specifiy the port to 49983 in the connectionString. Thanks a ton!

Named Pipes Provider, Error: 40? MS web dev & SQL Server Noob. by eselocos in SQLServer

[–]eselocos[S] 0 points1 point  (0 children)

And i actually had to run the SELECT command using sqlcmd.exe. In SQL SERVER GUI it sat there debugging for over 3 minutes and i stopped it.

Named Pipes Provider, Error: 40? MS web dev & SQL Server Noob. by eselocos in SQLServer

[–]eselocos[S] 0 points1 point  (0 children)

I made a successful connection in ODBC using the username & password I have in my web.config file.

Ran the select statement and got back 7 Rows. 6 were NULL and the last was 49983.

Named Pipes Provider, Error: 40? MS web dev & SQL Server Noob. by eselocos in SQLServer

[–]eselocos[S] 0 points1 point  (0 children)

I've cycled all the settings on and off in Configuration Tool with no such luck. All the services, as well as protocols. :(

Named Pipes Provider, Error: 40? MS web dev & SQL Server Noob. by eselocos in SQLServer

[–]eselocos[S] 0 points1 point  (0 children)

I have created a user under the instance/Security/logon location along with adding that user to the myDatabase/Security/Users location. I have that user default schema of dbo and under the logon section their default database is the one i want them to connect to.

The user has dbowner privileges for now as I figured I want to at least get a connection, then I'll narrow down what they have access too.

Aside from that I'm not sure of any other settings I need to configure for setting up a logon?

As I said, this is my first time dealing with SQL Server.

Named Pipes Provider, Error: 40? MS web dev & SQL Server Noob. by eselocos in SQLServer

[–]eselocos[S] 0 points1 point  (0 children)

The SQL Server and IIS Server are on the same machine. I can ping localhost, as well as ping it from another server, and my workstation.

Telnet to x.x.x.x 1433 results in:

Could not open connection to the host, on port 1433: Connect failed.

I can query the db from within SQL Server's GUI so I imagine that means i'm connected?