File name filtering / partial cloaking

I've been using the files section to maintain sites uploading
on FTP and am used to it. I block some local folders from being
uploaded by cloaking them.
Here's my issue : Some script is creating files in a
directory that contains files I need to access so I can't cloak it.
The file names don't have an extension and have an ID (#) in it so
it's not always the same.
Is there some sort of filtering which I could apply to some
folders, something like partial cloaking and/or partial allow which
could use regex (regular expression) like DW cool find tool ?

Would it be a monster job to move the files needing access to
a non-cloaked
folder and let DW adjust the paths?
"DynV" <[email protected]> wrote in message
news:gbmigo$qg$[email protected]..
> I've been using the files section to maintain sites
uploading on FTP and
> am
> used to it. I block some local folders from being
uploaded by cloaking
> them.
>
> Here's my issue : Some script is creating files in a
directory that
> contains
> files I need to access so I can't cloak it. The file
names don't have an
> extension and have an ID (#) in it so it's not always
the same.
>
> Is there some sort of filtering which I could apply to
some folders,
> something
> like partial cloaking and/or partial allow which could
use regex (regular
> expression) like DW cool find tool ?
>
>

Similar Messages

  • Moving multiple files by date range and/or file name filtered

    I need to move multiple files by date range and/or by filename (using a filter) to another directory. 
    OR
    How can I get the attributes of files in a directory, something you would see when typing in "dir" in a DOS or ls in UNIX.  I can parse this info and then make a array of files to move.
    The reason for needing this is that I need to move files that are located in another country, and sort them into different directories based on date.  Having to read each file for it's file information adds wasted time that I can't afford.  I am about to create a dos terminal to do a "dir" command to get the information and parse it out.. but I was hoping LV had a function that can get me that info so I don't have build it.
    THanks.

    You should use the 'File/Directory Info' functionality.
    This will return the last modificatoin of the file.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • How to find folders and files by its partial name c#

    in a specific folder of my hard drive i have stored many other sub folder and files. now i want to list those folders and files name by their partial name.
    for example
    c webapi xx folder
    c mvctutorial xx folder
    done webapi xx folder
    webapi done folder
    webapi.zip file
    mvc.iso file
    now when i like to search by partial name webapi then i want to get list of files and folders name which has webapi word. i want to show their full folder or file name in grid with their full path and size. like below way.
    Name Type location Size
    c webapi xx folder c:\test1 2 KB
    c mvctutorial xx folder c:\test3 3 KB
    done webapi xx folder c:\test1 11 KB
    webapi done folder c:\test1 9 KB
    webapi.zip file c:\test1 20 KB
    mvc.iso file c:\test4 5 KB
    i got a sample code which look like for finding files but the below code may not find folder. so i am looking for a sample code which will find files and folders too. so guide me to solve my issue.
    the below sample code will find files but not sure does it find files by partial name. here is the code. i am not before dev environment. so could not test the below code.
    find files code
    static void Main(string[] args)
    string partialName = "webapi";
    DirectoryInfo hdDirectoryInWhichToSearch = new DirectoryInfo(@"c:\");
    FileInfo[] filesInDir = hdDirectoryInWhichToSearch.GetFiles("*" + partialName + "*.*");
    foreach (FileInfo foundFile in filesInDir)
    string fullName = foundFile.FullName;
    Console.WriteLine(fullName);

    See code below
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.IO;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    string partialName = "webapi";
    DirectoryInfo hdDirectoryInWhichToSearch = new DirectoryInfo(@"c:\");
    FileInfo[] filesInDir = hdDirectoryInWhichToSearch.GetFiles("*" + partialName + "*.*");
    foreach (FileInfo foundFile in filesInDir)
    string fullName = foundFile.FullName;
    Console.WriteLine(fullName);
    DirectoryInfo[] foldersInDir = hdDirectoryInWhichToSearch.GetDirectories("*" + partialName + "*.*");
    foreach (DirectoryInfo foundFolder in foldersInDir)
    string fullName = foundFolder.FullName;
    Console.WriteLine(fullName);
    // or
    List<string> filesInDir2 = hdDirectoryInWhichToSearch.GetFiles("*" + partialName + "*.*").Select(x => x.FullName).ToList();
    filesInDir2.AddRange( hdDirectoryInWhichToSearch.GetDirectories("*" + partialName + "*.*").Select(x => x.FullName).ToList());
    foreach (string filesFolders in filesInDir2)
    Console.WriteLine(filesFolders);
    jdweng

  • Search using partial file name?

    I know this issue has been addressed before, but I haven't found a satisfactory answer.
    I use the Search field in the toolbar to search for files on my external drive. That external drive contains a file named "housefly.psd." When I search for "house" using the File Name filter and with columns set to Kind, all the Photoshop files that begin with "house" appear at the top of the window, including the file I'm searching for.
    But if I search for "fly," the "housefly.psd" file doesn't appear in the list at all, although files containing the word "fly" with a space before the word show up in the list (e.g. - "big fly.psd").
    Users aren't always going to remember the initial characters in a file name they want to find. So how do I find the file if I only remember some of the internal characters?
    Thanks,
    Andy
    iMac, OS 10.6.8

    Andy Tubbesing wrote:
    if I search for "fly," the "housefly.psd" file doesn't appear in the list at all, although files containing the word "fly" with a space before the word show up in the list (e.g. - "big fly.psd").
    Yeah, isn't Spotlight great?! Give this example to all the experts who gush about Spotlight.
    What you see is how Spotlight was designed to work -- at least for hoi polloi like us. The query looks for words, not strings. "Fly" is one word, "big fly" is two words, but "housefly" is one word. It contains the string "fly", but not the word "fly". Now, if you had had the foresight and forethought to name your file "HouseFly", then probably Spotlight would have found it, "Fly", unlike "fly" being, by the rules of the Apple wallahs, a word, not a string. Is that all? No, of course not, that would have been too simple. Spotlight also has hidden somewhere a private list of exceptions. So "books" in "Audiobooks" is always a word, no matter how capitalised; but in "Cookbooks" it's just a mere string, and hence not worthy of notice.
    How do you get around this (without using Terminal)?
    (1) One way is to construct a query, as already suggested, with the Filename and Contains. But, beware! if you're searching in Finder, and you've already entered a string in the Spotlight search field on the toolbar, the query constructed thus will be restricted to the hits of the query already in the search field. So, if you've enter "fly" in the window toolbar search field, and then construct a Filename Contains "fly" query, you'll find nothing, because any subset of the ∅ (empty set) is also empty. This restriction applies to any query thus constructed.
    (2) If you are a real, hair-chested, red-blooded Mac user, you don't use namby-pamby Filename queries. You go straight for the jugular. In the pop-up menu, instead of "Filename", choose "Other...". Then scroll through the interminable list to "Raw Query" and enable it. Then type in the Raw Query search box
    kMDItemFSName == *fly*
    Note 1: "*fly*", not "*fly", because the Item's File System Name is "housefly.psd".
    Note 2: You can use the keyword "name" in the window toolbar Spotlight search field, thus
    name:housefly
    However, this one doesn't take wildcards.
    (3) If you happen to be just a normal person, who uses a computer to be productive and not to exercise one's fingers by typing lengthy and abstruse keywords (or as a Rorschach test to have fun divining the inscrutable minds of Apple engineers), then my suggestion is to give Spotlight the widest possible berth and use something else. I suggest Find File by John R Chang, Find Any File by Thomas Tempelmann, and EasyFind by Christian Grünenberg.

  • Can file name get from partial field value ?

    Hi, Friend:
    I have file receiver with FCC, I used variable substitution (I have to use this rather than dynamic configuration, since there are multiple files created by multi-mapping), so the file name is pass via payload to adapter.
    In advanced tab, we can assigned to a variable like: payload:MT_XXXX,1,Filename,1
    Now I do not want full value of Filename, I just need part of the value of it.
    I will not consider an option of create another field to store part of the value, since after FCC, a blank line is created which is not acceptable by our integration partner.
    Is there any way to get it ?
    Thanks
    Liang

    Kevin:
    If you can see from what Madhusudana Reddy suggested:
    I created a node, saying "Tail" in end of structure, add one child node to it saying "Filename"
    Now in my mapping program, I can pass real file name I wanted to child node "Filename"
    In Variable substitution, I get the whole value of the node "Filename" when we naming the created file.
    In FCC, I used Madhusudana suggested, it would not created blank line when using  Tail.endSeparator '0'
    Hope this give you some hints
    @Carlos:
    Java Mapping is different approach which we do not want to go at this stage.
    Regars
    Liang

  • Can I partially change appearance on a file name?

    I´m working with a big company that has quite a few articles that I´m making individual originals for. Since the customer always refers to the products by name, I need to start the file names with the description. At the end of the file name I add the serial number for my business system.
    When i browse the windows the article numbers is hard to see because the file names are individual in lenght, and is not in a numerical sequence (alphabetical sorting) Is there any way to colorize or make just the numbers bold in the file name? Or does anyone have another idea of what to do?
    Sincerly 
    Perra
    Message was edited by: perrafromvarberg

    Finder uses a volume's  Spotlight index for its searches, and Spotlight won't create such an index on a Windows server. EasyFind is slower, but I think it still works remotely.
    I tried creating a local file named "testfile98765.txt", and then searched in EasyFind for *98765* after choosing "Unix-Wildcards" as the search operator (an asterisk matches anything). EasyFind found the file, which I could then either double-click to open directly from EasyFind, or else use ctrl-click>Reveal in Finder.

  • Partial indexing of file names

    There are a great many files (actually file names) that Spotlight cannot find. (Easy Find can find them.) If I open these files and then close them, Spotlight indexes them and can subsequently find them.
    Is there a way to re-index my HD?

    I have been trying to pinpoint problems on my G5 (dual processor with 2 GB RAM) that began when Software Update installed OS X 10.4.3. The problem has had the following symptoms:
    a. When I click on a file in the finder of any type in order to select it, Finder will BEACHBALL for several minutes but will ultimately return so that I can select the file and perform the desired actions. Examples include all movies, music files, NoteTaker files, and applications such as Final Cut Pro, DVD Studio Pro, and, often, iMovie HD. It has also happened on Word files.
    I ran Activity Monitor all day yesterday and noticed that Finder (or sometimes the Application that is using a file import routine that I believe to be related to Finder, such as iPhoto or iMovie), will NOT RESPOND (appear in Red) for several minutes, mds will always be at about 99-100%, and, suddenly the Not Responding application will find its soul and start responding. Frustrating!
    b. The same thing happens every time I try to import into iPhoto or iTunes.
    c. I noted that Spotlight NEVER returns results.
    d. I ultimately re-installed the OS X with the option to restore my network and user settings. Nothing changed.
    Yesterday I reinstalled again with the option that wipes the drive clean. Nothing changed. In both cases I updated to 10.4.3 via Software Update.
    e. I tried to force Spotlight index updating via the GUI method, but, when I click the ADD button and select a file to ADD via Privacy tab, nothing happens. The file is not added to the list. So I just ran the Terminal method, described by Dr. Smoke, below.
    I received the following message each time I ran this command: "Error, no index found for volume".
    It appears to me that there is common problem underlying these symptoms in that FInder and Spotlight seem to thrash whenever they have to perform a search or import function. I am totally at a loss on this. I have a brand new PB 15 and a PB 17 both running 10.4.3 as well as four other iMac G4's, and known of them have this problem. HELP!
    Hi, J.
    Two approaches to reindexing your startup disk:
    1. The GUI way: see "Spotlight: How to re-index files and
    folders."
    2. The Terminal way:2.1. In terminal,
    type the following command exactly as
    written:
    sudo mdutil -E /
    then press Return.
    2.2. Type your Admin password when prompted, then
    press Return.
    2.3. You'll receive a confirmation message that the
    index will be rebuilt automatically. Indexing will
    begin shortly thereafter.I prefer the
    Terminal approach over the GUI (Privacy) approach as
    there are some anomalies assocaited with using
    Privacy. You can run into anomalies in Tiger if you
    combine Privacy with mdutil. For details,
    see my "Stop Spotlight Indexing" FAQ.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above
    is freely available. However, because I own The X
    Lab™, a commercial Web site to which some of these
    links point, the Apple Discussions Terms of Use require I include the following
    disclosure statement with this post:
    I may receive some form of compensation, financial or
    otherwise, from my recommendation or link.
    G5 2 x 2 and PB 15   Mac OS X (10.4.3)  

  • How to user PowerShell -replace to remove the dreaded em dash from a file name?

    I have a bunch of .msg files in a directory and want to zip them up (to send them to our spam filtering company), but I keep getting errors on file names that contain the em dash (—).  I believe it's (char)0x2014.
    [edited]... the correct syntax is [char]0x2014.
    I wish to eliminate the em dash in the file name but I can't seem to find anything on the web about replacing em dashes.  When I paste '—', PowerShell replaces it with a '-'.
    I found this neat function that does a great job replacing multiple characters within a string.
    http://powershell.com/cs/blogs/tobias/archive/2011/04/28/multiple-text-replacement-challenge.aspx
    I am using the below code for my string replacement.
    Thank you for your help.
    function Replace-Text {
    param(
    [Parameter(Mandatory=$true)]
    $text,
    $replacementlist = "(-,,',,%,,$,,@,,#,,&,,’,"
    Invoke-Expression ('$text' + -join $(
    foreach($e in $replacementlist.Split(',')) {
    '.Replace("{0}","{1}")' -f $e, $(
    [void]$foreach.MoveNext()
    $foreach.Current)
    $path = '<path>'
    Get-ChildItem -Path $path | Rename-Item -NewName {(Replace-Text $_.Name).trim()}

    Here is a simple filter that will strip out all nonprintable chanracters.
    $newname=$file.Name -replace '[^a-zA-Z\.]'
    I just tested it on Win 7 which supports has a Unicode filesystem and it successfullstrips the bad characters.
    We also need to do this on files uploaded to SharePoint and OneDrive.
    The ~ and other similar characters are not allowed in may systems.  You should keep a translation log and tag all renamed files with some obvious tag.
    ¯\_(ツ)_/¯

  • Invalid File Name Errors when syncing to Ipod

    Ever since an update last fall I have been getting Invalid file name errors when I try to sync my ipod. A window would pop up saying "Windows could not copy 'SONGNAME' to the iPod 'IPODNAME' because an unkown error occurred (-37)." I would press OK and another window would immediately pop up that would say, "Attempting to copy to the disk 'IPODNAME' failed. the file name is invalid or too long."
    The windows would keep popping up countless times until the sync would just seem to time out and stop.
    The problem songs would have no problem playing in iTunes.
    Prior to the update this did not happen. No new songs were added around this time and nothing was changed to my file directory structure. I was too busy to troubleshoot this problem at the time and hoped that another update would fix it. Well, here I am many months and updates later and still no fix. After fiddling with iTunes and resetting my Ipod multiple times (goodbye saved angry bird games)I have found out that:
    1. By writing down the file name when the error windows pop up I can get a partial list of the problem file names. I could not get a complete list of the problem files because the sync would time out before a full list could be compiled (the list appears to be in the hundreds).
    2. If I changed the name of the file by adding OR deleting one character, remapping the song in itunes, the song would then sync properly.
    3. If I changed the name of the file, remapped the location of the file within iTunes, changed the name of the file BACK to the original name that iTunes supposedly had a problem with, and then remapped the location of the song within iTunes, the song would then sync properly
    4. If I moved the song to a different directory without changing the file name, remapped the song within iTunes, the song would sync properly.
    5. If I moved the song to a different directory without changing the file name, remapped the song within iTunes, moved the file BACK to the original directory, remapped the song again, the song would sync properly.
    6. If I renamed the file and then named it back to the original file name WITHOUT remapping the file location in iTunes, the song would still not sync properly
    7. If I moved the file into a different directory and then back again without remapping the file location, the song would still not sync properly.
    8. Changing or deleting the tags has no effect at all.
    9. File name lengths are already under 200 characters and there are no special characters used.
    So, to sum up, I have found out a way to fix the issue. The problem is, that there are hundreds of songs that appear to be affected and renaming or moving every single one individually and then remapping is extremely inefficient and ignores the cause of the problem. I also did not want to delete the itunes library and then add all of the songs back in because I have many custom playlists that I have spent hours creating and I do not want to delete them.
    Is there a better way to fix the problem? Especially if someone knows the root cause?

    I got a procmon log file and examined it. I have the file and I could also provide you with that or screenshots of it.
    There is nothing unusual about it. I can see entires in which CR has successfully opened the report and has cached in a c:\windows\temp.
    However there is one or two non-successful entries that may be related, especially that examining the stack trace brings us to a call to get_ProductLocaleID():
    - A call to read reg entry HKU\S-1-5-20\Software\Business Objects\Suite 12.0\Crystal Reports\Locale fails with NAME NOT FOUND.
    - immediately after that and from the same process (w3wp.ex) there is a call to open directory "c:\" which is logged as ACCESS DENIED.
    Any subsequent unsuccessful calls seem to be results of exception handling in the debug code.
    Does this point to any setup issues with CR? We always run the redistributable x86 runtime when installing it.

  • Copying files from Mac to Windows-invalid file names

    Unfortunately, my boss likes Windows more than Macs, so we have puchased some new Dell computers to replace older G4 Macs.
    I'm having trouble copying existing files from a Mac (OS 10.4)to the shared drive on the Windows XP computer. I'm getting an error message:
    "You can't copy the item 'filename' because the name is too long or includes characters that the disk can't display." Sometimes it doesn't give a filename, it gives a similar message "Some items couldn't be copied..."
    I assume the person has used some "illegal" file names such as "Meeting minutes 10/7/07" Or maybe we have too many folders inside of folders.
    QUESTION: Is there a correct/better way to copy large quantites of files/folders from Mac to Windows? Or is there a program that will look at the Mac files and alert me to wrong or too long files names?
    Other ideas to copy these files?
    thanks,
    Bill

    You can use a freeware utility like Renamer4Mac or BatchRename'em both of which have built-in filters that will rename files for Windows compatibility.
    Thank you... This sounded to me like it would fix the problem, so I downloaded both and looked at them. However, the manual/help file is very sparse, so I don't know if it will do what I want to and how it would do it.
    1. I couldn't find any option in either program to: Look at all files in selected folder, and list any invalid file names for Windows.
    2. There doesn't seem to be an option to "rename files without bad Windows characters" or "Remove invalid for Windows characters"
    I just couldn't find any explanation of how it was offering to rename the files. I can't rename all files to sequential names, that would make it hard to find a file later.
    Thank you,
    Bill

  • Copying music failed. The file name was invalid or too long.

    I went to consolidate my music, but when it got about 2/3 of the way through, it stopped with the error message, "Copying music failed. The file name was invalid or too long." I don't know which file it is referring to. How do I find this out?
    I needed to cosolidate so I could backup the entire library to DVD. Now I'm left with two partially complete libraries with many duplicates.

    To find out which file it was, look at where you were
    copying them too and see which was the last file
    copied - and then go back to your source, and go to
    the next one - it should be that one.
    I just wanted to add that I had the same issue (failure to finish copying and "invalid or too long" error msg) and at first didn't see how looking for the last file copied would work since iTunes is copying into folders.
    Duh.
    Reverse sort by date modified (newest folder at the top of the list) then drill down to the folder containing the files being copied. Voila. There was the (missing) culprit, and I knew which file to rename in the source folder.
    Thanks for the kick in the brain pan.
    Sony VAIO PCG-V505ACP Windows XP Pro

  • LONG FILE NAME SUPPORT IN SOLARIS 10 INTEL BASED

    Hi,
    I am facing the problem in solaris in which, i found that whenever I am copying any file directly from windows based PC to solaris the file name become automataically squizzes to 8+3 [dos file support]. In this case I am facing the problem in which I have to again rename file as actual then only it works properly.
    i.e the actual file name "abcdefghij.iope" is converted to "abcdefg_.iop"
    Can you confirm is there any setting to avoid this in solaris.
    RAJAN IYER

    You post your questions all over the Internet, in many different places ...
    ... you get partial answers all over the Internet, in many different places.
    http://www.linuxquestions.org/questions/showthread.php?t=451208
    You're seeing a limitation of Windows and your CD writing software within Windows, not of Solaris.
    The answer is in that other website's forum thread.

  • Getting Receive File Name and status of application from Biztalk database.

    Hello all,
    I want to retrieve Receive file name and status of application (started, partially started) in a stored procedure
    querying Biztalk databases.
    Please share if anybody have an Idea.
    Thanks

    Hi Nilesh,
    Status of BizTalk application can be obtained using ExplorerOM API provided by product. It's Application class has a Status property that returns one of Not Applicable, Started, Stopped, Partially Started.
    using Microsoft.BizTalk.ExplorerOM;
    private string GetApplicationStatus(string applicationName)
    BtsCatalogExplorer catalog = new BtsCatalogExplorer();
    string status = "";
    try
    //connection string to BizTalk management database
    catalog.ConnectionString = "SERVER=.;DATABASE=BizTalkMgmtDb;Integrated Security=SSPI";
    Microsoft.BizTalk.ExplorerOM.Application app = catalog.Applications[applicationName];
    if (app == null)
    throw new Exception(String.Format("Application '{0}' cannot be found.", applicationName));
    status = app.Status.ToString();
    catch (Exception ex)
    //Handle exception
    System.Diagnostics.EventLog.WriteEntry("MyMonitoryingApp", "Exception call stack: " + ex.ToString());
    finally
    if (catalog != null) { catalog.Dispose(); }
    return status;
    UPDATE: Found the thread from where I got this code. Thanks to Ashwin for providing it.
    Refer:
    Reg Stored Procedures for BizTalk Application Status in BizTalk Admin Console
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Part of sender File name at the receiver side?

    Hello All,
    My requirement is like this.
    iam picking the file from FTP server and place the file in another FTP server with out mapping.
    I need to use part of sender file name to create the receiver side along with current date.
    for example.
    sender side file name : LM01000008.txt
    recevier side file name need to generate : LM01dd/mm/yyyy
    Please let me know how to achive this.
    i tried with the blog given below, but partial file name is not possible with that blog.
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417100)ID0229698450DB11989196758750510369End?blog=/pub/wlg/6400
    Thanks and Regards,
    chinna

    Hi Chinna,
    Use this code
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    SimpleDateFormat dateformat = new SimpleDateFormat("yyyyMMdd");
    String timestamp = dateformat.format(new Date());
    String newfilename=fileName+timestamp+".txt";
    // change to new file name
    conf.put(key, newfilename);
    return "";
    Regards
    Suraj

  • Displaying the File Name in a Cell

    In version 2 of Numbers you used to be able to display the file name in a cell. If you copied a worksheet and gave it a new file name, that new name would automatically appear in the cell, so at a glance you could see which version of the worksheet you were looking at. As far as I can see that facility has gone in Version 3. Unless I have missed something?

    Hi Xabianblanca,
    Not *quite* as convenient but of course there is an easy partial workaround for this.
    Step 1. Click the triangle next to the document title:
    Step 2. Command-c. (the document name has already been selected for you).
    Step 3. Select the cell where you want to insert the document name and command-v.
    As for the Insert Date and Time menu pick there is a workaround that is just as easy to use as the original menu pick, after a quick one-time setup.
    See the other workarounds in that thread for some of the other features that weren't included in Numbers 3.0.
    SG

Maybe you are looking for

  • Error occurred while saving document in Web Analysis Studio

    We have encountered an issue when we tried to save a new report in Web Analysis. An error message box will prompt up displaying "Error occurred while saving document." (Please refer to the attached screenshots). Clicking the details button gives no r

  • Final Cut Studio 2 and New Macbooks with Nvidia graphics

    Do the new Macbooks announced today (10/14/2008) meet the minimum system requirements for running Final Cut Studio 2?

  • Security update for 7.1.6 fails

    Neither my MacBook or my iMac will accept the latest Quicktime update. The download proceeds but before the install is successful I get the following message: "A networking error has occurred: Error NSURLErrorDomain -1005 (-1005). Make sure you can c

  • Refresh IE page if computer idle for a specified time with powershell

    Hi, I have a Windows 8 pc that i have created a kiosk mode for and i want to be able to check the idle time so that if the idle is more than three minutes it will close all tabs without a warning and navigate the primary tab to a specific web site. T

  • Cannot download books

    I have had my Sony Readers PRS-505 for some time and have downloaded books without any problem in the past.  However, now I can't.  I don't get any error message that I can see (although something flashes up too quickly to read it), the book just doe