| bio | website | ryanhiebert.com |
|---|---|---|
| location | Angwin, CA | |
| age | 24 | |
| visits | member for | 3 years, 6 months |
| seen | Apr 24 at 22:55 | |
| stats | profile views | 12 |
I was the student tech at my High School, Running the Windows Server 2003 Domain and File Servers. On my own time, I played with Fedora Core for a bit. Then, coming to College, I became the administrator of the Computer Science department, and became familiar with Windows Server 2008 Active Directory, File Services, etc.
This is where I gained my experience with Debian Linux (my preferred distro), and with routing and web technologies under Linux (dns, apache, dhcp, iptables). I use Cisco routers, but much prefer the procurve hardware from HP.
Now I work at Pacific Union College as the Network Security Specialist, dealing with various Windows Server technologies and Networking Infrastructure.
|
May 2 |
awarded | Popular Question |
|
Mar 28 |
asked | Print Server Force Page Orientation, Paper Size, etc |
|
Feb 14 |
awarded | Popular Question |
|
Aug 21 |
awarded | Notable Question |
|
Mar 10 |
awarded | Popular Question |
|
Mar 7 |
awarded | Yearling |
|
Mar 5 |
awarded | Popular Question |
|
Oct 8 |
awarded | Yearling |
|
Aug 13 |
comment |
Select appropriate network printer for Remote Desktop based on Thin Client location It sounds like you know that this works. I'm thinking that I'll probably use OUs to signify locations of the thin clients, but I still am not sure how to obtain the info I require in a login script. Can you give some trivial example code that could get me the name of the computer, or perhaps a link to some code that already does searching through active directory? |
|
Aug 11 |
asked | Select appropriate network printer for Remote Desktop based on Thin Client location |
|
Aug 1 |
comment |
php cli memory limit The script sets its own memory limit internally to the application. It was set to 64 MB. Thanks for helping me find it. |
|
Aug 1 |
accepted | php cli memory limit |
|
Aug 1 |
comment |
php cli memory limit it seems that the script is setting the memory internally to this value. Thanks for helping me rule out everything else. I really didn't want it to be that! Thanks for the -d tip. |
|
Jul 29 |
comment |
php cli memory limit That conf is the debian default configuration, nothing special from me. Strangely, the comment above it say that it makes the memory limit 128 MB. |
|
Jul 29 |
asked | php cli memory limit |
|
Jun 24 |
awarded | Commentator |
|
Jun 24 |
comment |
Find users that are auto forwarding / redirecting their email in Exchange 2010 using Powershell I apologize. I forgot that multiple pipelines won't run, as I was going through a file. Needs to be like this: $mbox = Get-Mailbox; $mbox | Foreach { Get-InboxRule -Mailbox $_ }. |
|
Jun 24 |
accepted | Find users that are auto forwarding / redirecting their email in Exchange 2010 using Powershell |
|
Jun 23 |
comment |
Find users that are auto forwarding / redirecting their email in Exchange 2010 using Powershell Has to be Get-Mailbox | Foreach { Get-InboxRule -Mailbox $_ }, because Get-InboxRule doesn't take Mailboxes as Pipeline input. Fix that and the check is yours. |
|
Jun 22 |
revised |
Find users that are auto forwarding / redirecting their email in Exchange 2010 using Powershell Added that I could also use something to tell me if they have any server-side rules. |