Interactive report - Save as html, possible to save file in database?

Hi
I am in a situation where I want the output of a interactive report in HTML format, but I do not wan't to download the files to my computer. I want to automate my process to display the report and save the file to database and to be attached to a email from Apex in a later stage.
Is this possible at all? tried different aproaches with saving data to clob and converting to blob, but it all look horrible for the end user.
Sincerely
Johnny

Check if the subscription feature or download -> email available in apex 4.0 serves your purpose.

Similar Messages

  • Interactive Report with Calculated Aggregates - possible?

    I'm search for a possibility to create an aggregated column that is simply a computed value of two other aggregates.
    Example
    This how the basis data can look like
    Orderitem  | price |  no.
    A          | 100   | 3    
    B          | 10    | 1     The interactive report allows then to create a calculated column "total price" (price*no.) and some aggregates.
    Orderitem  | price |  no. | total price
    A          | 100   | 3     |  300
    B          | 10    | 1     | 10
               |       | sum: 4 | sum: 310I now want to create an additional aggregate line for column price holding the AVERAGE price.
    If I add such a column the result is (100+10) / 2 = 55 which is wrong from a business perspective.
    The correct value should be: 310/4 = 77.5.
    And the result would look like this
    Orderitem  | price     |  no. | total price
    A          | 100       | 3     |  300
    B          | 10        | 1     | 10
               | avg: 77.5 | sum: 4 | sum: 310Is is somehow possible to create this using only the interactive reports features? Without reprogramming regions or the base SQL.
    I can do it using pure SQL solutions. However the end users don't have the knowledge how to create such complicated queries.
    Edited by: Sven W. on Jul 3, 2009 3:22 PM
    Edited by: Sven W. on Jul 3, 2009 5:02 PM

    Btw. I mentioned that I can do it in pure SQL. Let me share this solution. Problem is that it is not interactive anymore.
    SQL> set timing off;
    SQL> with testdata as (select 'A' Orderitem, 100 price, 3 num from dual
      2                    UNION ALL select 'B' Orderitem, 10 price, 1 num from dual)
      3  select Orderitem,
      4         Price,
      5         num
      6  from testdata;
    O      PRICE        NUM
    A        100          3
    B         10          1
    SQL>
    SQL> with testdata as (select 'A' Orderitem, 100 price, 3 num from dual
      2                    UNION ALL select 'B' Orderitem, 10 price, 1 num from dual)
      3  select DECODE(GROUPING(orderitem), 1, 'All',orderitem) orderitem,
      4         DECODE(GROUPING(price), 1, sum(Price * num)/sum(num) ,price) price,
      5         sum(num) num,
      6         sum(Price * num) total_price
      7  from testdata
      8  group by grouping sets ((orderitem, price, num),()) ;
    ORD      PRICE        NUM TOTAL_PRICE
    A          100          3         300
    B           10          1          10
    All       77.5          4         310
    SQL> I'll guess for the real interactive feature we'll need to wait for some future Apex version.
    Edited by: Sven W. on Aug 19, 2009 2:07 PM

  • Control Breaks in Interactive Report Throw off HTML Header Style

    I created an APEX 4.0.0.11.23 page with an interactive report. Several columns are character strings with embedded spaces. At first, when the columns displayed they were wrapped around to as many lines as there were spaces. so I formatted it with this HTML header style:
    $('td[headers="ADDRESS"]').attr("style","white-space:nowrap");
    This corrected the problem but then the user requested two breaks on Column_A and Column_B. This threw the formatting off so I corrected it with this HTML header style:
    $('td[headers="ADDRESS BREAK_COLUMN_A_COLUMN_B_2"]').attr("style","white-space:nowrap");
    Now the lines wrap for some but not for all rows and there does not seem to be any pattern. So for instance the address for one particular row will look display in the desired format as:
    530 EAST 144TH STREET
    And another almost identical row will display as:
    525 EAST 143RD
    STREET
    I thought there may be binary data in the column so I embedded the following code in the main SELECT query that drives the page”
    Regexp_Replace(ADDRESS, '[^[:print:]]')
    This did not help. How do I implement HTML header styles for interactive reports with multiple control breaks so that the address is formatted properly for every line? Is there a related report or page attribute that needs to be set?
    BTW, the way I discovered the HTML header style for interactive reports with multiple control breaks by following this link which was provided in a related thread:
    Re: Interactive Report Control Break disregards HTML Header style.
    Edited by: Comet on Sep 27, 2012 11:00 AM
    Edited by: Comet on Sep 27, 2012 2:32 PM
    Edited by: Comet on Sep 27, 2012 2:33 PM
    Edited by: Comet on Sep 27, 2012 2:34 PM
    Edited by: Comet on Sep 27, 2012 2:35 PM
    Edited by: Comet on Sep 27, 2012 2:36 PM

    Suggest you reproduce this on apex.oracle.com using the same theme, IR configuration and equivalent data.
    What browser/version are you using?

  • IS it possible to save report with interactive features in a file?

    I know we can save the static report but is it possible to save the interactive features also?
    Like drill down, prompt, etc.
    i can understand that the html or pdf file cannot connect to database to retreive the data but just want to cross check with you experts.
    Please help gurus.
    Thanks,
    Karthick

    Hi all,
    My client is expecting html file with drill down features of the report in it. Is it possible by any way? I Know it is not possible. But if this is not possible i need to move out of obiee to some other product which i dont like to do.
    Thanks,
    Karthick

  • IS it possible to save drill down report in a html file?

    Hi all,
    My client is looking for a html file of a drill down report. Is it possible to save the report in html format with the drill down feature in it? Please help.
    Thanks,
    Karthick

    HI imansyah,
    Can you try doing what you want in first instance and then try posting your problem you face.
    Regards
    Rana

  • Interactive reports - save option question

    just a quick one -
    im developing an application in the APEX 3.1 with an interactive report, standard functionality allows users to save there report view (but not the default view) as i understand.
    However are these saved views public or private to the user who created them? also is there functionality or a work around to make them private?
    Regards - Solomon Hill

    Hello,
    The saved views are for that user. You can easily test it by logging in with one user and in another browser with another user. Is that the way you want it to behave?
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • Interactive Report with html tags --- Data saved in Excel with html tags

    Hello,
    I am using APEX 4.0. I have an interactive report that displays some of the columns bold and / or colors using html tags. As an example,
    SELECT
    '''<font color="green"><b>'' || SERIAL_NUMBER || ''</b></font>'' SERIAL_NUMBER,'||chr(10)||
    'PRODUCT_NAME,'||chr(10)||
    '''<font color="teal"><b>'' || PRODUCT_DESC || ''</b></font>'' DESC,'||chr(10)||
    'QUANTITY,'||chr(10)||
    FROM
    <Table name>
    At runtime, the Interactive Report displays the fonts, colors correctly; however, when I save the data of the Interactive Report in an Excel format, it saves the Html tags along in the EXCEL spreadsheet. For example, the column serial number from the above SELECT statement is extracted in an Excel column as ---
    <font color="green"><b>123456789</b></font>
    Is there another way to render the column data so that extracted data will not display the HTML tags or is removing the html font color tags from the SELECT statement the only option?
    Thanks in advance.
    Ed

    Hello,
    I have a feeling all your problems are related take a look at this thread. I found it in 10 seconds of searching the forum.
    strange tags
    It's always best to do a quick search first most likely you are not the first person to have this problem.
    Carl

  • Interactive report - strip HTML

    Hi,
    Where is the option to strip HTML for an Interactive report? Is it possible to set this option for each column?
    N.B. This setting can be found under Layout and Pagination for classic report.
    Thanks,
    Louis-Guillaume
    Homepage: http://www.insum.ca
    Blog: http://insum-apex.blogspot.com

    Louis-Guillaume,
    Because we allow filters on the actual column values, strip HTML is not possible as an option for interactive reports. Any changes to the column values should be done inside the query.
    - Marco

  • HTML Code text appearing instead of checkbox in an interactive report

    Hi All,
    When I try to include a check box column in an interactive report only the HTML text is being displayed as
    <input type="checkbox" name="f01" value="1739" />.
    However check boxes are working fine in other application and also in other sample test reports that I've tried on...
    Could you please give any ideas as to why this is happening?
    Thanks in Advance

    Hi,
    Change column to Standard report column from report attributes.
    Br, Jari

  • Public / Sharing of Interactive Reports

    The new Interactive Reports are a great feature that will be extremely helpful for both our development team and our users. However, currently when a user saves an interactive report, there's no way to share it with other users or to make it a public report that can be viewed by everyone. This is because the report is saved with the user's name and can only be viewed by that particular user. This really limits the usefulness of the interactive reports. For example, we would like to enable our power users, administrative users, and even regular end users to be able to create and modify reports and share them with others. In addition, our company has several hundred Crystal reports that we would like to replace with interactive reports. However, if our development team creates all of these as interactive reports (using the “Save Report” feature, not as separate pages), there is no way to make them public so that all of our users can then access them. I've read several requests in this forum for this type of enhancement. I've also read that the apex team intends to implement this sharing feature soon. In the meantime, I've figured out a work-around. This work-around saves and retrieves all interactive reports using a generic, fictitious user name. Using the Page Sentry Function under the Authentication Scheme, we switch the APP_USER to a generic, fictitious user only for the interactive report pages, and set APP_USER back to the original, correct user on the other pages. Here's the code I'm using in the Page Sentry function:
    declare
    c owa_cookie.cookie;
    begin
    if :app_page_id in (1,51,52) then
    APEX_CUSTOM_AUTH.SET_USER('REPORT_USER');
    else
    c := owa_cookie.get('LOGIN_USERNAME_COOKIE');
    APEX_CUSTOM_AUTH.SET_USER(c.vals(1));
    end if;
    return true;
    end;
    This code will set the APP_USER to "REPORT_USER" on pages 1, 51, and 52. Therefore, when interactive reports are saved or retrieved on these pages, they will use the user named "REPORT_USER" regardless of the user that actually logged into the application. This concept can also be expanded to limit certain reports to certain users (or groups of users) by calling a custom function in the database.
    I tried using the SET_USER code within a page process (PL/SQL anonymous block), and although it changed the APP_USER, it did not affect the interactive report. I assume this is because the interactive report “does its thing” prior to the firing of the processes on a page. However, the Page Sentry function apparently fires earlier in the sequence (before the interactive report processing).
    This will make the interactive reports much more useful for our company and I hope it will be useful to some of you as well.
    Darrin

    Scott-
    Thanks for the feedback. I tried both the Session Verification Function and the VPD attribute and neither one accomplished the goal. The VPD attribute PL/SQL code apparently fires too late in the process, so although it changed the APP_USER, it had no affect on the interactive report. And the Session Verification Function had adverse affects on the authentication. So rather than mess around with the security settings in the application, I came up with a different work-around.
    Here's the new work-around.
    On the interactive report page I created a page process (PL/SQL anonymous block) and set the process point to "On Load - Before Header". For the process I entered the following pl/sql code:
    begin
    update FLOWS_030100.WWV_FLOW_WORKSHEET_RPTS
    set APPLICATION_USER = :APP_USER
    where ID = :REPORTID
    and session_id is null;
    end;
    This code changes the application user in the underlying interactive report table. It sets the user to the current APP_USER only for the report being viewed. Therefore, when the interactive report processing happens, it thinks the report is for the current APP_USER and renders the report just fine. It also saves any changes to the report back to the base report so other users can view the modifications as well.
    I have the tab feature turned off on my interactive reports. Instead I have another page that lists all the interactive reports. When a user clicks one of the reports in the list, I set the REPORTID variable and pull up the corresponding interactive report (that's why I'm using REPORTID in the where clause). For users that are using a tabbed approach, they may have to set the application user for all of the base reports (or figure out another way to determine which individual report tab is being viewed). If they were setting it for all the base reports, it would look like this:
    begin
    update FLOWS_030100.WWV_FLOW_WORKSHEET_RPTS
    set APPLICATION_USER = :APP_USER
    where session_id is null;
    end;
    This solution isn't ideal when lots of users are hitting the same interactive report. It's possible that if two user attempt to load the same interactive report at the same time, the following might happen.
    1. User A triggers process to update underlying table
    2. User B triggers process to update underlying table
    3. User A triggers process to run interactive report (and therefore does not see the report because the report is now set to User B)
    4. User B triggers process to run interactive report (and sees report just fine)
    So the solution isn't ideal, but it's the best I could come up with until the apex team implements real report sharing. I've tested it with a handful of users and it's worked very well so far.
    Darrin

  • Interactive report on view based on pipelined table function.

    Hi,
    I want to build an Interactive Report on a view.
    The view definition contains a select on a pipelined table function. I use context functionality to pass paramaters to the pipelined table function.
    A plain select * from #my_view# in SqlPlus results in 121 different rows.
    However, If I base my Interactive report on this view, I get 15 repeated rows (all the same).
    Is it possible to use pipelined table functionality on an Interactive report? I can't seem to get it working.
    If I use the following approach (http://rakeshjsr.blogspot.nl/2010/10/oracle-apex-interactive-report-based-on.html) I do get results, but I can't use this solution for a reason that's not relevant.

    Hello,
    Is it possible to use pipelined table functionality on an Interactive report? I can't seem to get it working. I have used it in one instance and it works fine. However I was passing the values to pipe-lined function directly.
    IR Query..
    SELECT * FROM TABLE(fn_pipeline(:P1_ITEM_NAME))Call pipe-lined function from IR query directly (instead of using view)
    Try sending values to Pipe-lined function directly. In-case if the problem is with setting and getting values from the context?
    Regards,
    Hari

  • Interactive Reports: Display data on two lines per row?

    Is it somehow possible to display a single row across two lines in an interactive report?
    Something like this:
    Row1 Field 1, Row1 Field 2, Row1 Field 3
    Row1 Field 4 (spanning across the other fields)
    Row2 Field 1, Row2 Field 2, Row2 Field 3
    Row2 Field 4 (spanning across the other fields)
    Row3 Field 1, Row3 Field 2, Row3 Field 3
    Row3 Field 4 (spanning across the other fields)
    ... etc
    For example, I have a "Remarks" column that would look better on its own line, rather than being squeezed into the same row with the other columns.
    I realize that this layout might not be possible out-of-the-box, but I was thinking that perhaps some javascript/jQuery trick could be used. Unfortunately, my jQuery-fu is not strong yet, so I'm asking for help...
    (I also know that this type of layout is possible using a classic report with a custom template, but I would prefer to use the Interactive Report if at all possible.)
    - Morten

    Hi,
    Try this to page HTML header
    <style>
    .apexir_WORKSHEET_DATA td{white-space:nowrap!important;}
    </style>At least it work with firefox 3.5 for me
    Br, Jari

  • Interactive report & htmldb_Get

    I have 3 pages in my application:
    1. Main
    2. Report
    3. Interactive report
    The source SQL code of Report is the same as Interactive report.
    The HTML header&footer of Report is the same as Interactive report.
    I use function load_report for calling the Report on the Main page:
    function load_report () {
    var get = new htmldb_Get(null,$x('pFlowId').value,null,2);
    gReturn = get.get(null,'-div id="IREP"-', '-/div-');
    get = null;
    $x('AjaxReport').innerHTML = gReturn;
    return;
    It's work fine, but when I try calling the Interactive report:
    var get = new htmldb_Get(null,$x('pFlowId').value,null,3);
    it's not work.
    Is't possible the calling the Interactive report with htmldb_Get?
    Edited by: Senleft on 04.03.2009 22:48
    I changed "&lt;" to "-" in string gReturn = get.get(null,'-div id="IREP"-', '-/div-'); because "&gt;" is not displayed

    Before calling Interactive report gReturn has the next value:
    "---div id="apexir_WORKSHEET_REGION" class="apex_worksheet"--- ---div id="apexir_DETAIL" class="apex_detail"---"
    I changed '<' ' to' '---' because '><' is not displayed
    Before calling Report gReturn has the next value (I'm sorry but the header column is on Russian):
    <div id="report_42336412725658679_catch"><table cellpadding="0" border="0" cellspacing="0" summary="" id="report_R42336412725658679"><tr><td></td></tr>
    <tr><td><table cellpadding="0" border="0" cellspacing="0" summary="" class="t17Standard">
    <tr ><th class="t17ReportHeader" id="Подвид фасада">Подвид фасада</th><th class="t17ReportHeader" id="Стандарт МДФ">Стандарт МДФ</th><th class="t17ReportHeader" id="Тип МДФ">Тип МДФ</th><th class="t17ReportHeader" id="Потребность">Потребность</th><th class="t17ReportHeader" id="Расход">Расход</th></tr>
    <tr onmouseover="row_mouse_over42336412725658679(this, 1)" onmouseout="row_mouse_out42336412725658679(this, 1)"><td headers="Подвид фасада" class="t17data">Декоративные элементы 1</td><td headers="Стандарт МДФ" class="t17data">Стандарт</td><td headers="Тип МДФ" class="t17data">19 мм</td><td headers="Потребность" class="t17data">1,7</td><td headers="Расход" class="t17data">1,7</td></tr><tr onmouseover="row_mouse_over42336412725658679(this, 2)" onmouseout="row_mouse_out42336412725658679(this, 2)"><td headers="Подвид фасада" class="t17data">Декоративные элементы 1</td><td headers="Стандарт МДФ" class="t17data">Нестандарт</td><td headers="Тип МДФ" class="t17data">19 мм</td><td headers="Потребность" class="t17data">1,7</td><td headers="Расход" class="t17data">1,7</td></tr><tr onmouseover="row_mouse_over42336412725658679(this, 3)" onmouseout="row_mouse_out42336412725658679(this, 3)"><td headers="Подвид фасада" class="t17data">Декоративные элементы 1</td><td headers="Стандарт МДФ" class="t17data">Нестандарт</td><td headers="Тип МДФ" class="t17data">25 мм</td><td headers="Потребность" class="t17data">1,7</td><td headers="Расход" class="t17data">1,7</td></tr><tr onmouseover="row_mouse_over42336412725658679(this, 4)" onmouseout="row_mouse_out42336412725658679(this, 4)"><td headers="Подвид фасада" class="t17data">Декоративные элементы 1</td><td headers="Стандарт МДФ" class="t17data">Стандарт</td><td headers="Тип МДФ" class="t17data">25 мм</td><td headers="Потребность" class="t17data">1,7</td><td headers="Расход" class="t17data">1,7</td></tr><tr onmouseover="row_mouse_over42336412725658679(this, 5)" onmouseout="row_mouse_out42336412725658679(this, 5)"><td headers="Подвид фасада" class="t17data">Декоративные элементы 1</td><td headers="Стандарт МДФ" class="t17data">Нестандарт</td><td headers="Тип МДФ" class="t17data">4 мм</td><td headers="Потребность" class="t17data">1,7</td><td headers="Расход" class="t17data">1,7</td></tr><tr onmouseover="row_mouse_over42336412725658679(this, 6)" onmouseout="row_mouse_out42336412725658679(this, 6)"><td headers="Подвид фасада" class="t17data">Декоративные элементы 1</td><td headers="Стандарт МДФ" class="t17data">Стандарт</td><td headers="Тип МДФ" class="t17data">4 мм</td><td headers="Потребность" class="t17data">1,7</td><td headers="Расход" class="t17data">1,7</td></tr></table><div class="t17CVS">

  • Interactive report and font colours

    Apex : current version
    I have an interactive report that displays details from Table 1.
    I need to display the data is different colours. How do I do that?
    Eg: name of employees in green their email id in red etc etc.
    Can I do this ? If yes, please tell me how do I do this?
    Thanks in advance.

    LKSwetha wrote:
    Hi Joe,
    The colour varies in fields based on what is displayed.
    For instance, I have the main employees table and a skills table with values Job A, Job B ,Job C etc.
    Different employees are skilled for different jobs so emp1 can have job A and job b while emp2 can have job D and job A etc
    The interactive report actually pulls data from a view I created based on the emp table and skill table
    emp1 job A Job B
    emp2 job D job A
    I want to display all Job A(displayed in report) in green colour and Job B in red and so on....Then why didn't you say so originally?
    Eg: name of employees in green their email id in red etc etc.No mention of skills, jobs or conditions.
    I want to know of we can do this and if yes how do I achieve it.Yes you can do this. If you had searched the forum before posting you'd have found out how to do it more than 24 hours ago.
    The real question is whether you should be doing this at all. Why do you think actually need/want to do this? It doesn't seem to provide any real usability benefit, and appear very likely to violate Web Content Accessibility Guidelines.
    But if you must...
    As interactive reports lack the HTML Expression feature of standard reports, the standard way to do this unfortunately requires violating the separation of concerns and generating structural (a <tt>span</tt> element) and presentational (an in-line style sheet) aspects in the query:
    select
    ⋮        
           , case
               when sk.skill = 'Job A'
               then
                 '<!-- ' || sk.skill || ' --><span style="color: green;">' || sk.skill || '</span>'
               when sk.skill = 'Job B'
               then
                 '<!-- ' || sk.skill || ' --><span style="color: red;">' || sk.skill || '</span>'
               ⋮
             end job1
    ⋮For columns to be properly sortable, the leading edge of the column must be an HTML comment that provides the required sort order using character semantics.
    The Display As column attribute for such columns must be set to Standard Report Column.
    This method has side effects: some IR filters won't work; aggregate calculations can't be applied to the column; and report exports contain the HTML rather than the expected value.
    Other approaches involve using Dynamic Actions/jQuery/JavaScript.
    However, if there are more than a few jobs/skills involved, or this information is volatile and subject to change then this method breaks down. To start with, there are only 17 named CSS colours, so if your minimal CSS knowledge doesn't extend to specifying colours in another way and you've more than 16 jobs then they can't all have a unique colour (white/silver/gray will be invisible on some IR backgrounds). It's also difficult/tedious to maintain this type of hard coding if the data changes frequently. How many jobs/skills are there?
    For more than 3 or 4 jobs a better approach would be to store the CSS colours or classes in a column in the skills table, and just select it with the job name:
    select
    ⋮        
           , '<!-- ' || sk.skill || ' --><span style="color: ' || sk.color || ';">' || sk.skill || '</span>' job1
           , '<!-- ' || sk.skill || ' --><span style="color: ' || sk.color || ';">' || sk.skill || '</span>' job2

    I am not so familiar with CSS so am bit confused while trying previous steps given by fac586What is confusing (other than posting a question different to the one you actually want answered)?
    You will be able to achieve very little in APEX if you are unfamiliar with the web technologies it uses. Spend some time on the tutorials here: start with HTML, then XHTML, CSS, Javascript and the HTML DOM, and now HTML5.
    Can you give me any simpler steps to achieve this? No, that is the simplest way to implement what was originally asked for.
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form) and if so, whether the tabular form is declarative—using only report attributes and a wizard generated MRU process—or manual—using apex_item calls in the query and custom processing—or some hybrid approach.)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    Read the FAQ and forum sticky threads if you haven't done so already.

  • Display more than one interactive report on a page

    Hi,
    is it possible to display more than one interactive report on a page.
    Thanks for any idea
    Norbert

    You can't display two on one page, but it is possible to have multiple conditional interactive reports. See Duncs most excellent blog:
    http://djmein.blogspot.com/2008/03/multiple-interactive-reports-on-one.html
    This is probably an unsupported approach.
    Cheers
    Shunt

Maybe you are looking for

  • How can I install handwritten lettertpes on my iPad 3

    As stated above: How can I install other lettertypes on my ipad?

  • Battery stuck at 39%

    I have had my charger plugged in for several days now and my battery status is 39%. If I remove the power cord the laptop dies. If the laptop is off it will still be 39% when I turn it on. I wasn't using the laptop for about 2.5 months, before I had

  • SQL Upgrade 2000 to SQL 2005

    We are upgrading to new server and installing SQL 2005.  Using Crystal Server 10.  Where can I find a step by step?  Can I just backup Business Objects Database, install the app on the new server, restore the database to SQL 2005? Thanks, SS

  • Why can't I run a powershell file I created from a powershell function

    Ok so admittedly I am still learning a lot about powershell so this may have a very easy explanation/solution So I have this script file and this is it in its entirety  function Add-DriveFunctions($Provider, $Path) foreach ($Drive in $Provider.Drives

  • Windows 7 Wifi Unable to Connect (one device)

    I have 4 devices (asus laptop - personal, dell laptop - work, android phone - personal, windows 8 phone - work) that all used to connect to wifi networks without an issue. Both laptops run windows 7. I'm now in temporary housing for a few months with