Get answers.  Share knowledge.  Collaborate with peers.




HIDWatch.dll Read Error 1167
I found this in this thread: “…just a note to let you know if others have this same problem they should reinstall Express Scribe pedal drivers. The older version of Express Scribe used the HIDWatch.dll, but the newest version does not…” Here is the link to NCH software: Express Scribe Versions

View Answer   |  February 12, 2013  2:26 PM
HIDWatch Error
answered by:
63,535 pts.

PowerShell to create an Active Directory script
I would create a logon script for your domain and you can have that script set up to send the notifications. If using Powershell V2 then you can call the send-mailmessage cmdlet in the script and pass it the values that you need. If your AD has all the attributes filled out then you should [...]

View Answer   |  February 11, 2013  8:24 AM
Active Directory, Active Directory scripting, Network management, PowerShell, PowerShell Scripts
answered by:
845 pts.

Powershell, loop through two different arrays?
I am not sure I understand exactly but here is what I think you are trying to do. You want to read in two files one with a list of computer names and the other with just the alphabet. You want to read in the comp name from file 1, do some work and then append file [...]

View Answer   |  February 11, 2013  11:12 PM
Arrays, LOOP statement, PowerShell, PowerShell Scripts, Scripting
answered by:
845 pts.

Is Powershell alone enough for managing Active Directory?
Check out this <a href=”http://www.powergui.org/index.jspa”>Powergui</a> resource from Quest. It is a great means of learning Powershell scripting. I would not bother with VB if you do not already know it. Powershell is better than VB in my opinion for almost all tasks but certainly for AD. Check out the Quest AD cmdlets as well. They work great [...]

View Answer   |  February 11, 2013  7:35 PM
Active Directory, Exchange 2007, PowerShell, Scripting, Scripting languages, VB, Windows Server 2008
answered by:
32,645 pts.

Powershell script for counting files and emailing results
This should do it. This is provided as is and with no warranty. if you need anything else contact me at colin@dbyay.com $path = “Path to check” $files = ls $path  $fcount = $files.count if{$fcount -gt 5) { Send-MailMessage -SmtpServer “yourserver.domain.com” -To “email address” -From “from address” -Subjuct “files in $path exceeded threshold” -Body “File [...]

View Answer   |  February 11, 2013  8:52 PM
PowerShell Scripts
answered by:
845 pts.

PowerShell and CMD
So, what is your question? If you are trying to copy files here is a script that will do it if the file paths already exist. This script is provided as is and with no warranty. $path = “path to source files” $path1 = “path to destination” $files = ls $path  foreach($file in $files) { [...]

View Answer   |  February 11, 2013  8:34 AM
CMD+POWERSHELL, PowerShell, Powershell commands
answered by:
385 pts.

Compiler
What RDBMS are you working with? If you are using MS SQL Server then you should be using SSMS, if you are connecting to Oracle then you can use Toad, SQL Deveolper (Free), if you are using MySQL then you can use the web interface tools that are provided. So it really depends on what [...]

View Answer   |  February 11, 2013  4:12 PM
Compiler, SQL
answered by:
11,400 pts.

Script to delete files starting with X and older than N days – HELP
You can do this fairly simply using Powershell. Script provided as is and I am not responsible for any undesired results. The script is written to delete files so be careful and test first. See Below: $path = “path to delete from” $date = Get-Date $checkdate = $date.adddays(-5) #$checkdate $files = ls $path | where{$_.name [...]

View Answer   |  February 11, 2013  2:42 PM
LPT, VBScipt, Windows
answered by:
5 pts.

Cloud computing
Thanks for coming to ITKE Did you have a specific technical question you need an answer for? For what you have entered, you best solution to get more information would to searching the web.

View Answer   |  February 11, 2013  2:05 PM
Cloud Computing, cloud computing services
answered by:
5 pts.

Broken earphone in Kindle Fire
The smart thing is to send it back and have them do it.  One of my fellow techs took his apart and since some of the connections are so short, once he took it apart, he was unable to put it back correctly.  So be wise and send it back to the factory and have [...]

View Answer   |  February 11, 2013  3:05 AM
Kindle Fire, Tablets
answered by:
5,475 pts.

Interrupts
How about the length of time of the interrupt. 

View Answer   |  February 11, 2013  7:48 AM
I/O, Interrupts
answered by:
5 pts.

Significance of record format in physical file
One of the uses of the record format is when you have a file with multiple record layouts. This is not very common anymore, but years ago, the value in position 1 of the record would define the layout for the remaing fields. For example, an ‘H’ might be a header record and a ‘D’ [...]

View Answer   |  February 11, 2013  8:14 AM
AS/400, Physical File
answered by:
32,855 pts.

Windows Server 2008 R2 license issue
If you have a license for 2008 R2, why install R1?  You can do to the Microsoft site and download R2 and burn it to a CD and install it from there.  Problem solved.

View Answer   |  February 11, 2013  8:52 AM
Windows Server 2008 R1, Windows Server 2008 R2
answered by:
5 pts.

Replace leading blanks with zeros in RPG
Use the BIF %XLATE. yourfield = %Xlate(‘  ‘ : ’0′);

View Answer   |  February 11, 2013  11:02 AM
AS/400, RPG
answered by:
32,855 pts.

Find program name in System36
Look at the source code for the menu

View Answer   |  February 11, 2013  12:55 PM
AS/400, AS/400 programming
answered by:
11,400 pts.

Absolute Positioning of controls in ASP.NET 3.5
Drag and drop any control ,go to source for control code. Write the following code at the end of control open tag. and goto designer just move the control where ever u want. Do the same thing for all controls. Or the another way go to menu >Layout>position>Absolute>ok Thanks and regards Shivaprasad ThanksSelvaAnna University

View Answer   |  February 11, 2013  5:28 AM
Active Server Pages, ASP.NET, ASP.NET3.5, Interface design, Web development
answered by:
15 pts.

How to run a Wi-Fi router without NAT and DHCP
Log on to your wifi router via web browser and disable the DHCP server.  This way the wifi router will only act as an access point. Don’t forget to change the wifi router in the same ip address range like other network device. 

View Answer   |  February 9, 2013  6:18 PM
DHCP, Wi-Fi, Wi-Fi router
answered by:
11,400 pts.

Best way to store the data
This is a pretty wide open question. Besides your requirement (quick retrieval), budget plays an important part. Since you seem to have no budget at all, you would need to depend on open source NAS products. This would be a cheaper solution, provided you have reasonable hard disks.

View Answer   |  February 9, 2013  9:22 PM
Data storage, Storage
answered by:
11,400 pts.

Temp user
Just go to Computer, right click it, go to Manage, then go to Local Users and Groups, right click on Users, and from here, you can create as many accounts and set their passwords as you wish.

View Answer   |  February 9, 2013  7:21 PM
Servers
answered by:
11,400 pts.

Web message in AS/400 is stuck
Too late to help original poster, but I got one of these halts today. My issue was a damaged DDM file object. I had to cancel the job (rerunable), move the DDM object to a pre-delete library, create a new DDM definition over the desired remote file. Job ran OK on rerun. Taking option 7 on [...]

View Answer   |  February 8, 2013  9:54 AM
AS/400, AS/400 error messages, AS/400 errors, AS/400 message queues
answered by:
1,565 pts.