Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Login script help. (https://thetfp.com/tfp/tilted-technology/38794-login-script-help.html)

amge 12-11-2003 10:16 AM

Login script help.
 
I don't know if this is possible or not, but here it goes.

Is there a Login script I can write so that when a user logs in, it will bring up Internet Explorer with a specific website for the home page.

If I can not do this, could someone recommend an easy way to roll out our company intranet.

I need to be able to make the default homepage in Internet Explorer to be our intranet site. But I don't want to go to each PC and login as the user and set their default home page in Internet Explorer.

Any help will be appreciated.

charliex 12-11-2003 08:54 PM

it'd be helpful if you told us which OS you were using.

you want to track down the registry key that IE uses for the home page setting, then make it a reg file with it in it, then add in the login script
Code:

regedit -s "full pathname of the registry script"
its best to put the reg file on a machine thats always on and has
read access, then you an alter the reg file for everyone at once.

so you'd add to the login script

Code:

regedit -s "\\ourserver\scripts\homepage.reg"

then the reg file would have something like

Code:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Start Page"="http://www.tfproject.org"

This is for XP, and for IE6 since i don't know your OS , i'm using mine as an example, also i don't know if you know how to write a login script at all, its under the profile settings of the users properties, i'd also point that to the same path, or at least one with the same rules and make sure its accessable to all users.

Of course i hope i don't have to remind you that login scripts are open to some serious abuse, so you'd want to make sure that they are not editable, or otherwise compromisable, otherwise you might get some pee'd off users ;)

rubicon 12-12-2003 08:22 AM

If you're using a Windows domain login script (just a DOS batch file), you can insert standard commands like this:

Code:

iexplore http://www.microsoft.com
If it's Win2000 or XP you might be able to just to it with the URL alone:

Code:

http://www.microsoft.com
Or this:

More details on your setup would help.

hrdwareguy 12-12-2003 08:43 AM

Aside from what rubicon said, you could also use group polocies to specify the home page and cause IE to run at log in.

amge 12-17-2003 10:36 AM

Thanks for the responses.

I had to go to a funeral, so I'm really sorry for the delay in my thanks.

As for OS's they are all windows 2000, and a few XP's. I am using a Windows domain login script. I will try the batch file and see if that works.

Thanks again.

MovieNut 12-17-2003 07:21 PM

well...
 
Amge,

hrdwareguy has a point, you could just set it in a group policy.

I've worked with KiXtart for a while now. It's a pretty powerful tool for scripting. But if you've already got a domain running active directory, just do it from group policy.

I subscribe to K.I.S.S. So if it's easily done in a group policy object (GPO), that's what we use. If it's easier to do from the logon script via KiX, we'll update the KiXtart logon script....

HTH

glytch 12-17-2003 09:36 PM

Here's another vote for group policy. The more familiar you get with the MMC, the easier your life will become.

rubicon 12-19-2003 12:03 PM

Your job will be easier since your clients are 2000 and XP. Group Policy is very powerful for 2000/XP but useless for 9x.

hrdwareguy 12-19-2003 03:20 PM

Quote:

Originally posted by rubicon
Your job will be easier since your clients are 2000 and XP. Group Policy is very powerful for 2000/XP but useless for 9x.
True, butfor 9x clients you can use poledit and have the same effect.


All times are GMT -8. The time now is 01:47 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360