Maxim Girls Script#
This is awesome!
Categories: Code Links
Friday, April 30, 2004 10:03:14 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

RD Session Properties for ADSI / AD#
Here are the other properties that we needed:

oADobject.MaxIdleTime = 30
oADobject.MaxConnectionTime = 0
oADobject.MaxDisconnectionTime = 10
Categories: Code Links
Wednesday, April 28, 2004 3:45:54 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Remote Control default scripts#
Remote Control default scripts

dim iCounter

Set oRootDSE = GetObject("LDAP://RootDSE")
Set oDomain = GetObject("LDAP://" & oRootDSE.Get("DefaultNamingContext"))

msgbox("about to start")
Call EnumOUs(oDomain.ADsPath)
msgbox("done")
msgbox(iCounter)

Sub EnumOUs(sADsPath)

	Set oContainer = GetObject(sADsPath)
	oContainer.Filter = Array("OrganizationalUnit")
	For Each oOU in oContainer
		'WScript.Echo oOU.ADsPath
		EnumUsers(oOU.ADsPath)
		EnumOUs(oOU.ADsPath)
	Next

End Sub


Sub EnumUsers(sADsPath)

	Set oContainer = GetObject(sADsPath)
	oContainer.Filter = Array("User")
	For Each oADobject in oContainer

		If oADobject.Class = "user" Then
			oADobject.EnableRemoteControl = 2 '*** this is what we want CDM
			oADobject.SetInfo()
		'	WScript.Echo oADobject.sAMAccountName
		'	WScript.Echo oADobject.displayName
		'	WScript.Echo oADobject.Description
		'	WScript.Echo oADobject.employeeID
iCounter = iCounter + 1
		End If

	Next

End Sub
Categories: Code Links
Tuesday, April 27, 2004 9:16:31 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Active Directory User Schema#
MS keeps moving this around, and it is impossible to find when you are looking for something.
Categories: Code Links
Tuesday, April 27, 2004 6:05:50 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

eTeamz.com.... If only I would have thought of this earlier!#
I had basically this EXACT same idea... but they thought of it first, and are pulling in 100MM a year now.

Sample Site and Tennis Sites
Categories: Code Links
Tuesday, April 27, 2004 2:11:40 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Home Theater Projector#
http://www.avsforum.com/ seems to be the place for this info. Also here.
Categories: Code Links
Friday, April 23, 2004 5:45:28 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Running an ASP.NET site off a file share#
I came across this article that discuess what you need to do to set the .NET code access security so that you can access a remote dll and process it.

In addition I had to setup file permissions for the account that is doing the network sharing so that it could access the "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files" folder on the webserver.
Categories: Code Links
Tuesday, April 20, 2004 6:08:39 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

HTML Text Overflow#
I ran into this CSS feature again today. I remember reading about it a long time ago, but I never seem to remember it when I could actually put it to use.


<SPAN 
style="width:100px;overflow:hidden;text-overflow:ellipsis;">
<NOBR>text to display</NOBR>
</SPAN>

Categories: Code Links
Thursday, April 15, 2004 9:30:42 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

GDI+ and Image Manipulation#
Part 1 and 2 on using GDI+, and another on image manipulation.
Categories: Code Links
Thursday, April 15, 2004 9:27:00 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Page and Application level error handling#
Here is something that we should probably incorporate into our base pages.
Categories: Code Links
Thursday, April 15, 2004 9:19:13 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

WebPlanner ASP.NET Schedule System#
I've put WebPlanner up here before, but I just watched the demo and it was pretty sweet.

I'm going to try a demo of it.
Categories: Code Links
Tuesday, April 13, 2004 7:37:49 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Single sign-on for multiple ASP.NET Applications#
Here is an article that shows how to override the default mechanism for setting the cookie and checking the persons login so that multiple applications (XYZ.domain.com) can all utilize a standard login.
Categories: Code Links
Tuesday, April 13, 2004 7:17:48 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

More Articles On ViewState#
Here and here are two more articles that deal with viewstate. I didn't know you could store it on the server.
Categories: Code Links
Tuesday, April 13, 2004 8:24:49 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Examining the Exception Management Application Block #
This article goes over the MS Exception Management Application Blocks.
Categories: Code Links
Monday, April 12, 2004 12:33:04 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Filtering SQL result sets with some great UDFs#
The UDFs are in the source. Not worth showing it all.

Categories: Code Links
Friday, April 09, 2004 11:47:18 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Running AD and Exchange On One Machine#
Here are some article that seem to suggest it is ok, except for load considerations:
1
2
3
2
Categories: Code Links
Friday, April 09, 2004 1:48:54 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Another DNN Forum#
Here is a cheap DNN 2.0 forum.
Categories: Code Links
Thursday, April 08, 2004 11:15:37 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

ASP.NET Caching White Paper#
This is a white paper that discusses some of the differenent methods for caching with ASP.NET. I already have a firm understanding of the Cache object, but I haven't tried page level output caching.
Categories: Code Links
Tuesday, April 06, 2004 4:18:10 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Another .NET Forum#
Here is another free vb.net based forum.
Categories: Code Links
Tuesday, April 06, 2004 12:54:06 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

DashPC#
DashPC looks like they recently updated their site. New parts/info.
Categories: Code Links
Monday, April 05, 2004 12:48:21 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

All content © 2010, Christopher May, Inc
Open Job Positions
On this page
Google Ads
This site
Calendar
<March 2010>
SunMonTueWedThuFriSat
28123456
78910111213
14151617181920
21222324252627
28293031123
45678910
Archives
Sitemap
Blogroll OPML
Disclaimer

Powered by: newtelligence dasBlog 2.3.9074.18820

The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

Send mail to the author(s) E-mail

Theme design by Jelle Druyts


Pick a theme: